Skip to content

Commit 327e28f

Browse files
committed
---
yaml --- r: 107623 b: refs/heads/dist-snap c: 51103c8 h: refs/heads/master i: 107621: 22edad0 107619: 37efc70 107615: a90d962 v: v3
1 parent 69616d7 commit 327e28f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: f64fdf524a434f0e5cd0bc91d09c144723f3c90d
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/dist-snap: 8cce35e490ce259244656e12d272ab1915b0541b
9+
refs/heads/dist-snap: 51103c89d06953fc534572723f030b292fabe73d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1212
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/src/etc/check-summary.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env python
22
# xfail-license
33

4+
import glob
45
import sys
56

67
if __name__ == '__main__':
@@ -24,7 +25,8 @@ def summarise(fname):
2425
def count(t):
2526
return sum(map(lambda (f, s): len(s.get(t, [])), summaries))
2627
logfiles = sys.argv[1:]
27-
map(summarise, logfiles)
28+
for files in map(glob.glob, logfiles):
29+
map(summarise, files)
2830
ok = count('ok')
2931
failed = count('failed')
3032
ignored = count('ignored')

0 commit comments

Comments
 (0)