mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-30 02:24:22 -05:00
* add `chia dev data sync-time` for doing datalayer sync time tests * add chia stop -d all at the end * less subprocessing * remove dead log file code * add subcommand help messages * correct for 3.9 support * allow for days of timing * format done message * more info * fixup * fixup * stuff * more try finally * add minutes * add `--working-path`
23 lines
561 B
Python
23 lines
561 B
Python
from __future__ import annotations
|
|
|
|
import click
|
|
|
|
from chia.cmds.dev.data import data_group
|
|
from chia.cmds.dev.gh import gh_group
|
|
from chia.cmds.dev.installers import installers_group
|
|
from chia.cmds.dev.mempool import mempool_cmd
|
|
from chia.cmds.dev.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)
|
|
dev_cmd.add_command(mempool_cmd)
|
|
dev_cmd.add_command(data_group)
|