Commit b97d99cd authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

regrtest: count also env changed as failures in progress (#3061)

parent b5011479
......@@ -132,8 +132,9 @@ class Regrtest:
# "[ 51/405/1] test_tcl passed"
line = f"{test_index:{self.test_count_width}}{self.test_count}"
if self.bad and not self.ns.pgo:
line = f"{line}/{len(self.bad)}"
fails = len(self.bad) + len(self.environment_changed)
if fails and not self.ns.pgo:
line = f"{line}/{fails}"
line = f"[{line}] {test}"
# add the system load prefix: "load avg: 1.80 "
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment