8000 regrtest: the 'bad' and 'environment_changed' sets of tests don't int… · python/cpython@9a47ed8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9a47ed8

Browse files
committed
regrtest: the 'bad' and 'environment_changed' sets of tests don't intersect anymore
1 parent 3a7ffa7 commit 9a47ed8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Lib/test/regrtest.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -798,10 +798,8 @@ def work():
798798
for time, test in test_times[:10]:
799799
print("%s: %.1fs" % (test, time))
800800
if bad:
801-
bad = sorted(set(bad) - set(environment_changed))
802-
if bad:
803-
print(count(len(bad), "test"), "failed:")
804-
printlist(bad)
801+
print(count(len(bad), "test"), "failed:")
802+
printlist(bad)
805803
if environment_changed:
806804
print("{} altered the execution environment:".format(
807805
count(len(environment_changed), "test")))

0 commit comments

Comments
 (0)
0