Skip to content

Commit 5a7eff4

Browse files
committed
Adding into report comments, errors, open_fail errors that chagned their value
between runs.
1 parent df76472 commit 5a7eff4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

codebender_testing/utils.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ def report_creator(compile_type, log_entry, log_file):
149149
diff[url] = {}
150150
diff[url][result] = new_log[url][result]
151151
changes += 1
152+
continue
153+
if old_log[url][result] != new_log[url][result]:
154+
if not url in diff:
155+
diff[url] = {}
156+
diff[url][result] = new_log[url][result]
157+
changes += 1
152158
elif len(logs_to_examine) == 1:
153159
diff = logs_to_examine[0]
154160
changes += 1

0 commit comments

Comments
 (0)