Files
chia-blockchain/chia/cmds/dev/main.py
Kyle AltendorfandGitHub c97f0a1777 add chia dev data sync-time for doing datalayer sync time tests (#19437)
* 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`
2025-04-17 16:21:38 -05:00

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)