Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows.
diff --git a/Lib/test/test_capi.py b/Lib/test/test_capi.py
index 327ac66..ada393d 100644
--- a/Lib/test/test_capi.py
+++ b/Lib/test/test_capi.py
@@ -145,6 +145,9 @@
 
 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__)))