summaryrefslogtreecommitdiff
path: root/Lib/test/test_capi.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-06-30 20:02:54 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-06-30 20:02:54 +0200
commit71cbafbda124585b3dad1485659b32241be0038b (patch)
tree2dc55fc802ac3682aed37f59fad71ed60d0d192f /Lib/test/test_capi.py
parenta6d2c769fb38129b6654f8e4ad5b6b27af182f2c (diff)
downloadcpython-git-71cbafbda124585b3dad1485659b32241be0038b.tar.gz
Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows.
Diffstat (limited to 'Lib/test/test_capi.py')
-rw-r--r--Lib/test/test_capi.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index 327ac66501..ada393d9b4 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__)))