Skip to content
Merged
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
4 changes: 2 additions & 2 deletions tests/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1375,8 +1375,8 @@ def run_fixture_case_on_instance(
from tests.e2e.case_runner import case_cli_arguments, expected_exit_code

label = f"{level} fixture: {case_name}"
if "cliCommand" not in case:
self.record(label, level, False, 0.0, f"{level} mode requires a cliCommand")
if "cliCommand" not in case and "args" not in case:
self.record(label, level, False, 0.0, f"{level} mode requires args or a cliCommand")
return
typed_case = cast("Any", case)
arguments = tuple(
Expand Down