[3.11] GH-94736: mark SemLock test as linux only (GH-94750) (#94752)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2022-07-11 08:24:12 -07:00 committed by GitHub
parent 91176d3883
commit a276833a7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6029,6 +6029,7 @@ def tearDownModule():
@unittest.skipIf(not hasattr(_multiprocessing, 'SemLock'), 'SemLock not available')
@unittest.skipIf(sys.platform != "linux", "Linux only")
class SemLockTests(unittest.TestCase):
def test_semlock_subclass(self):