We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfdc6fd commit 4132adbCopy full SHA for 4132adb
Lib/test/libregrtest/main.py
@@ -415,6 +415,8 @@ def _test_forever(self, tests):
415
yield test
416
if self.bad:
417
return
418
+ if self.ns.fail_env_changed and self.environment_changed:
419
+ return
420
421
def display_header(self):
422
# Print basic platform information
@@ -478,7 +480,7 @@ def finalize(self):
478
480
result = "FAILURE"
479
481
elif self.interrupted:
482
result = "INTERRUPTED"
- elif self.environment_changed and self.ns.fail_env_changed:
483
+ elif self.ns.fail_env_changed and self.environment_changed:
484
result = "ENV CHANGED"
485
else:
486
result = "SUCCESS"
0 commit comments