diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/tests/test_msvc9compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/tests/test_msvc9compiler.py b/Lib/distutils/tests/test_msvc9compiler.py index e1f08d8..8a908d9 100644 --- a/Lib/distutils/tests/test_msvc9compiler.py +++ b/Lib/distutils/tests/test_msvc9compiler.py @@ -60,7 +60,7 @@ _CLEANED_MANIFEST = """\ </dependency> </assembly>""" -@unittest.skip("These tests are only for win32") +@unittest.skipUnless(sys.platform=="win32", "These tests are only for win32") class msvc9compilerTestCase(support.TempdirManager, unittest.TestCase): |