Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows.

This commit is contained in:
Antoine Pitrou 2011-06-30 20:04:06 +02:00
commit 61600cb0c3
2 changed files with 5 additions and 0 deletions

View file

@ -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__)))