forked from josch/mmdebstrap
coverage.py: also output failed to stderr
This commit is contained in:
parent
3fcb125e3c
commit
117a1591c5
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ def main():
|
||||||
)
|
)
|
||||||
print("time left: %s" % timeleft, file=sys.stderr)
|
print("time left: %s" % timeleft, file=sys.stderr)
|
||||||
if failed:
|
if failed:
|
||||||
print("failed: %d" % len(failed))
|
print("failed: %d" % len(failed), file=sys.stderr)
|
||||||
num_finished += 1
|
num_finished += 1
|
||||||
with open("tests/" + name) as fin, open("shared/test.sh", "w") as fout:
|
with open("tests/" + name) as fin, open("shared/test.sh", "w") as fout:
|
||||||
for line in fin:
|
for line in fin:
|
||||||
|
|
Loading…
Reference in a new issue