mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows.
This commit is contained in:
parent
a6d2c769fb
commit
71cbafbda1
2 changed files with 5 additions and 0 deletions
|
@ -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__)))
|
||||
|
|
|
@ -136,6 +136,8 @@ Build
|
|||
Tests
|
||||
-----
|
||||
|
||||
- Issue #12407: Explicitly skip test_capi.EmbeddingTest under Windows.
|
||||
|
||||
- Issue #12400: regrtest -W doesn't rerun the tests twice anymore, but captures
|
||||
the output and displays it on failure instead. regrtest -v doesn't print the
|
||||
error twice anymore if there is only one error.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue