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 d9ba8c5 commit c702321Copy full SHA for c702321
main.py
@@ -220,9 +220,13 @@ def add_result(
220
+ process_result.stderr
221
)
222
223
+ probable_result = TestResult.PROCESS_ERROR
224
+ if process_result.returncode == -signal.SIGALRM:
225
+ probable_result = TestResult.TIMEOUT_ERROR
226
+
227
add_result(
228
new_results,
- TestResult.PROCESS_ERROR,
229
+ probable_result,
230
"\n".join(test_results),
231
process_result.returncode,
232
0 commit comments