https://github.com/python/cpython/commit/9c468e2c5dffb6fa9811fd16e70fa0463bdfce5f
commit: 9c468e2c5dffb6fa9811fd16e70fa0463bdfce5f
branch: main
author: Russell Keith-Magee <russ...@keith-magee.com>
committer: ned-deily <n...@python.org>
date: 2024-04-30T19:32:37-04:00
summary:

gh-118201 - Disable the flaky POSIX test_confstr test on iOS (GH-118452)

files:
M Lib/test/test_posix.py

diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index 1d22869046fd12..7e5f04c22bd6d3 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -564,6 +564,7 @@ def test_dup(self):
 
     @unittest.skipUnless(hasattr(posix, 'confstr'),
                          'test needs posix.confstr()')
+    @unittest.skipIf(support.is_apple_mobile, "gh-118201: Test is flaky on 
iOS")
     def test_confstr(self):
         self.assertRaises(ValueError, posix.confstr, "CS_garbage")
         self.assertEqual(len(posix.confstr("CS_PATH")) > 0, True)

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: arch...@mail-archive.com

Reply via email to