mirror of
https://github.com/python/cpython.git
synced 2025-11-03 11:23:31 +00:00
regrtest: count also env changed as failures in progress (#3061)
This commit is contained in:
parent
b501147980
commit
b97d99cd7f
1 changed files with 3 additions and 2 deletions
|
|
@ -132,8 +132,9 @@ class Regrtest:
|
||||||
|
|
||||||
# "[ 51/405/1] test_tcl passed"
|
# "[ 51/405/1] test_tcl passed"
|
||||||
line = f"{test_index:{self.test_count_width}}{self.test_count}"
|
line = f"{test_index:{self.test_count_width}}{self.test_count}"
|
||||||
if self.bad and not self.ns.pgo:
|
fails = len(self.bad) + len(self.environment_changed)
|
||||||
line = f"{line}/{len(self.bad)}"
|
if fails and not self.ns.pgo:
|
||||||
|
line = f"{line}/{fails}"
|
||||||
line = f"[{line}] {test}"
|
line = f"[{line}] {test}"
|
||||||
|
|
||||||
# add the system load prefix: "load avg: 1.80 "
|
# add the system load prefix: "load avg: 1.80 "
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue