We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a0d46 commit a61b1e1Copy full SHA for a61b1e1
1 file changed
tests/cli/test_scenario_cli.py
@@ -122,6 +122,10 @@ def test_help_mentions_max_mean(self) -> None:
122
combined = proc.stdout + proc.stderr
123
assert 'max-mean' in combined.lower() or 'max_mean' in combined.lower()
124
125
+ def test_help_does_not_run_benchmark(self) -> None:
126
+ proc = run_script(scenario_script(), '--help')
127
+ assert 'benchmark:' not in proc.stdout
128
+
129
130
class TestScenarioCliEdgeCases:
131
def test_number_zero_fails(self) -> None:
0 commit comments