Skip to content

Commit 44349bf

Browse files
author
Matt Roeschke
committed
Merge remote-tracking branch 'upstream/master' into calendarday_offset
2 parents af9117e + ffae158 commit 44349bf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

ci/print_skipped.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def parse_results(filename):
1010
root = tree.getroot()
1111
skipped = []
1212

13-
current_class = old_class = ''
13+
current_class = ''
1414
i = 1
1515
assert i - 1 == len(skipped)
1616
for el in root.findall('testcase'):
@@ -24,7 +24,9 @@ def parse_results(filename):
2424
out = ''
2525
if old_class != current_class:
2626
ndigits = int(math.log(i, 10) + 1)
27-
out += ('-' * (len(name + msg) + 4 + ndigits) + '\n') # 4 for : + space + # + space
27+
28+
# 4 for : + space + # + space
29+
out += ('-' * (len(name + msg) + 4 + ndigits) + '\n')
2830
out += '#{i} {name}: {msg}'.format(i=i, name=name, msg=msg)
2931
skipped.append(out)
3032
i += 1

0 commit comments

Comments
 (0)