Skip to content

Commit 1e39b83

Browse files
authored
bpo-35537: Skip test_start_new_session() of posix_spawn (GH-11718)
The test fails. Skip the test until a fix can be found.
1 parent 80c5dfe commit 1e39b83

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/test_posix.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,6 +1624,8 @@ def test_setsigmask_wrong_type(self):
16241624
os.environ, setsigmask=[signal.NSIG,
16251625
signal.NSIG+1])
16261626

1627+
@unittest.skipIf(True,
1628+
"FIXME: bpo-35537: test fails is setsid is supported")
16271629
def test_start_new_session(self):
16281630
# For code coverage of calling setsid(). We don't care if we get an
16291631
# EPERM error from it depending on the test execution environment, that

0 commit comments

Comments
 (0)