Skip to content

Commit cfafd3a

Browse files
GH-94736: mark SemLock test as linux only (GH-94750)
See https://buildbot.python.org/all/#/builders/172/builds/2522 The PR skips the test on non-linux platforms. Automerge-Triggered-By: GH:pablogsal
1 parent 86c1df1 commit cfafd3a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/_test_multiprocessing.py

+1
Original file line numberDiff line numberDiff line change
@@ -6023,6 +6023,7 @@ def tearDownModule():
60236023

60246024

60256025
@unittest.skipIf(not hasattr(_multiprocessing, 'SemLock'), 'SemLock not available')
6026+
@unittest.skipIf(sys.platform != "linux", "Linux only")
60266027
class SemLockTests(unittest.TestCase):
60276028

60286029
def test_semlock_subclass(self):

0 commit comments

Comments
 (0)