We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbc0928 commit 37a2de3Copy full SHA for 37a2de3
1 file changed
tests/test_ci.py
@@ -56,7 +56,10 @@ def test_cli_noexecute():
56
# Should complete without error (even if no results found)
57
assert result.returncode in [0, 1] # 0 = success, 1 = no results found
58
# Output goes to stderr, not stdout
59
- assert "Total" in (result.stdout + result.stderr) or "hits" in (result.stdout + result.stderr).lower()
+ assert (
60
+ "Total" in (result.stdout + result.stderr)
61
+ or "hits" in (result.stdout + result.stderr).lower()
62
+ )
63
64
65
def test_cli_syntax():
0 commit comments