diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-29 12:02:35 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-29 12:02:35 (GMT) |
commit | feabaed054ae94cf1104d21f2c13568c5c8b6622 (patch) | |
tree | d74e81c9e78c3d9616787dc4134202366d1ed63a /Lib/test/test_regrtest.py | |
parent | 449b27179931aa570597556ed4865ac2f1f981c9 (diff) | |
download | cpython-feabaed054ae94cf1104d21f2c13568c5c8b6622.zip cpython-feabaed054ae94cf1104d21f2c13568c5c8b6622.tar.gz cpython-feabaed054ae94cf1104d21f2c13568c5c8b6622.tar.bz2 |
Oops, revert unwanted change, sorry
Diffstat (limited to 'Lib/test/test_regrtest.py')
-rw-r--r-- | Lib/test/test_regrtest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_regrtest.py b/Lib/test/test_regrtest.py index 5906c17..ca4b356 100644 --- a/Lib/test/test_regrtest.py +++ b/Lib/test/test_regrtest.py @@ -549,6 +549,8 @@ class ArgsTestCase(BaseTestCase): % (self.TESTNAME_REGEX, len(tests))) self.check_line(output, regex) + @unittest.skipIf(sys.platform == 'win32', + "FIXME: coverage doesn't work on Windows") def test_coverage(self): # test --coverage test = self.create_test() |