mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-27 01:30:30 -04:00
* add chia dev gh test for launching configured test runs
* empty again
* better
* use the actual authenticated username
* more output
* helpful errors for invalid --only value
* tidy short help
* add at least an invalid --only test case
* prepare a long help
* add gh api runner helper
* use the commit hash for the temporary branch
* and uuid too
* fix up os selection
* add `--remote`
* load a url for a specified `--ref` as well
* both helps
* show defaults in `--help`
* help touchup
* Revert "show defaults in `--help`"
This reverts commit 5d7f4868e0.
* r
* add an actual dispatch test skeleton
* do not conflict check `tmp/**`
* assert a bit more about the resulting run
* oops
* skip the test for now
* pre-commit
19 lines
396 B
Python
19 lines
396 B
Python
from __future__ import annotations
|
|
|
|
import click
|
|
|
|
from chia.cmds.gh import gh_group
|
|
from chia.cmds.installers import installers_group
|
|
from chia.cmds.sim import sim_cmd
|
|
|
|
|
|
@click.group("dev", help="Developer commands and tools")
|
|
@click.pass_context
|
|
def dev_cmd(ctx: click.Context) -> None:
|
|
pass
|
|
|
|
|
|
dev_cmd.add_command(sim_cmd)
|
|
dev_cmd.add_command(installers_group)
|
|
dev_cmd.add_command(gh_group)
|