Skip to content

Commit bd376e1

Browse files
have regular output to stdout too
1 parent 96cd2ea commit bd376e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/test-production-rules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def test_ruleset_cli(ruleset):
199199

200200
# Invoke the tool, do not print anything
201201
cmd = f"{options.clibin} -r {test_rules_file} -i {ruledir} -o {test_results_file} -f json"
202-
subprocess.run(shlex.split(cmd), check=True, stdout=subprocess.DEVNULL, stderr=subprocess.STDOUT)
202+
subprocess.run(shlex.split(cmd), check=True, stdout=subprocess.STDOUT, stderr=subprocess.STDOUT)
203203

204204
# check that the number of violations match the number of expected annotations
205205
with open(test_results_file) as results_file:

0 commit comments

Comments
 (0)