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 3d2d15e commit 1fbed48Copy full SHA for 1fbed48
codebender_testing/utils.py
@@ -91,10 +91,10 @@ def throttle_compile():
91
def report_creator(compile_type, log_entry, log_file):
92
logs = os.listdir(get_path('logs'))
93
logs_re = re.compile(r'.+cb_compile_tester.+')
94
- if compile_type == 'libraries':
+ if compile_type == 'library':
95
logs_re = re.compile(r'.+libraries_test.+')
96
97
- logs = [x for x in logs if x != '.gitignore' and logs_re.match(x)]
+ logs = sorted([x for x in logs if x != '.gitignore' and logs_re.match(x)])
98
tail = logs[-2:]
99
logs_to_examine = []
100
for log in tail:
0 commit comments