Skip to content

Commit 635071a

Browse files
committed
Added compile_type of target libraries test when reading previous logs.
This will resume correctly if any previous log is found.
1 parent 07440b1 commit 635071a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

codebender_testing/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ def read_last_log(compile_type):
101101
logs_re = re.compile(r'.+libraries_test.+')
102102
elif compile_type == 'fetch':
103103
logs_re = re.compile(r'.+libraries_fetch.+')
104+
elif compile_type == 'target_library':
105+
logs_re = re.compile(r'.+target_libraries.+')
104106

105107
logs = sorted([x for x in logs if x != '.gitignore' and logs_re.match(x)])
106108

0 commit comments

Comments
 (0)