We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10cf0f7 commit 073471cCopy full SHA for 073471c
1 file changed
tests/client/test_config.py
@@ -44,7 +44,9 @@ def test_command_execution(mock_config_path: Path):
44
45
test_args = [command] + args + ["--help"]
46
47
- result = subprocess.run(test_args, capture_output=True, text=True, timeout=5)
+ result = subprocess.run(
48
+ test_args, capture_output=True, text=True, timeout=5, check=False
49
+ )
50
51
assert result.returncode == 0
52
assert "usage" in result.stdout.lower()
0 commit comments