We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13f9cde commit dae5979Copy full SHA for dae5979
Lib/test/test_posix.py
@@ -568,6 +568,7 @@ def test_dup(self):
568
569
@unittest.skipUnless(hasattr(posix, 'confstr'),
570
'test needs posix.confstr()')
571
+ @unittest.skipIf(support.is_apple_mobile, "gh-118201: Test is flaky on iOS")
572
def test_confstr(self):
573
self.assertRaises(ValueError, posix.confstr, "CS_garbage")
574
self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)
0 commit comments