diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-06-30 18:04:06 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-06-30 18:04:06 (GMT) |
commit | 61600cb0c357fcdca048cee586865a26417dbd70 (patch) | |
tree | 5c9e96cb32f7bb5beb1b93fee2e468b510a29bff /Lib/test | |
parent | 5de1532163a3247dd82201449d9f0c63012259fc (diff) | |
parent | 71cbafbda124585b3dad1485659b32241be0038b (diff) | |
download | cpython-61600cb0c357fcdca048cee586865a26417dbd70.zip cpython-61600cb0c357fcdca048cee586865a26417dbd70.tar.gz cpython-61600cb0c357fcdca048cee586865a26417dbd70.tar.bz2 |
Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_capi.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py index 7236474..c649d3e 100644 --- a/Lib/test/test_capi.py +++ b/Lib/test/test_capi.py @@ -145,6 +145,9 @@ class Test6012(unittest.TestCase): class EmbeddingTest(unittest.TestCase): + @unittest.skipIf( + sys.platform.startswith('win'), + "test doesn't work under Windows") def test_subinterps(self): # XXX only tested under Unix checkouts basepath = os.path.dirname(os.path.dirname(os.path.dirname(__file__))) |