We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a560faf commit d452c41Copy full SHA for d452c41
.github/workflows/ci.yml
@@ -88,6 +88,7 @@ jobs:
88
test_report_file = open(test_report_path, 'w')
89
files_to_close.append(test_report_file)
90
procs.append(subprocess.Popen(["codeql", "test", "run", "--failing-exitcode=122", f"--slice={slice}/{num_slices}", "--ram=2048", "--format=json", test_root], stdout=test_report_file, stderr=subprocess.PIPE))
91
+ procs.append(subprocess.Popen(["codeql", "--version", "--failing-exitcode=122", f"--slice={slice}/{num_slices}", "--ram=2048", "--format=json", test_root], stdout=test_report_file, stderr=subprocess.PIPE))
92
93
for p in procs:
94
_, err = p.communicate()
0 commit comments