Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ dependencies = [
"python-dateutil>=2.9",
"tabulate>=0.9",
"click>=8.1,<8.2",
"InquirerPy>=0.3.4",
]
dynamic = ["version"]

Expand Down
2 changes: 2 additions & 0 deletions smart_tests/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

from smart_tests.app import Application
from smart_tests.args4p.command import Group
from smart_tests.commands.analyze import analyze
from smart_tests.commands.compare import compare
from smart_tests.commands.detect_flakes import detect_flakes
from smart_tests.commands.gate import gate
Expand All @@ -24,6 +25,7 @@
# TODO: main.add_command(split_subset)
cli.add_command(verify)
cli.add_command(inspect)
cli.add_command(analyze)
cli.add_command(stats)
cli.add_command(compare)
cli.add_command(detect_flakes)
Expand Down
11 changes: 11 additions & 0 deletions smart_tests/commands/analyze/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from ... import args4p
from ...app import Application
from .subset import subset


@args4p.group()
def analyze(app: Application):
return app


analyze.add_command(subset)
Loading
Loading