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

bpo-34021: Windows skips test_regrtest.test_env_changed() (GH-10804)

On Windows, test_env_changed() of test_regrtest is now skipped
because it fails  randomly for an unknown reason on "x86 Windows XP
VS9.0 2.7" buildbot worker.
parent 36003003
...@@ -672,6 +672,9 @@ class ArgsTestCase(BaseTestCase): ...@@ -672,6 +672,9 @@ class ArgsTestCase(BaseTestCase):
subset = ['test_method1', 'test_method3'] subset = ['test_method1', 'test_method3']
self.assertEqual(methods, subset) self.assertEqual(methods, subset)
# bpo-34021: The test fails randomly for an unknown reason
# on "x86 Windows XP VS9.0 2.7" buildbot worker.
@unittest.skipIf(sys.platform == "win32", "test fails randomly on Windows")
def test_env_changed(self): def test_env_changed(self):
code = textwrap.dedent(""" code = textwrap.dedent("""
import unittest import unittest
......
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