diff --git a/tests/client/test_config.py b/tests/client/test_config.py index 9f1cd8ee1..69efb4024 100644 --- a/tests/client/test_config.py +++ b/tests/client/test_config.py @@ -44,7 +44,9 @@ def test_command_execution(mock_config_path: Path): test_args = [command] + args + ["--help"] - result = subprocess.run(test_args, capture_output=True, text=True, timeout=5) + result = subprocess.run( + test_args, capture_output=True, text=True, timeout=5, check=False + ) assert result.returncode == 0 assert "usage" in result.stdout.lower()