From: Zachary Ware Date: Sun, 9 Aug 2015 03:03:27 +0000 (-0500) Subject: regrtest: the 'bad' and 'environment_changed' sets of tests don't intersect anymore X-Git-Tag: v3.5.0rc1~6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9a47ed883943589c68987a41e5662012131b3536;p=python regrtest: the 'bad' and 'environment_changed' sets of tests don't intersect anymore --- diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index c97ec52c7a..6708876c04 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -798,10 +798,8 @@ def main(tests=None, **kwargs): for time, test in test_times[:10]: print("%s: %.1fs" % (test, time)) if bad: - bad = sorted(set(bad) - set(environment_changed)) - if bad: - print(count(len(bad), "test"), "failed:") - printlist(bad) + print(count(len(bad), "test"), "failed:") + printlist(bad) if environment_changed: print("{} altered the execution environment:".format( count(len(environment_changed), "test")))