gh-115258: Temporarily skip some queue tests on all platforms (#115361)

This commit is contained in:
Kirill Podoprigora 2024-02-12 23:52:25 +03:00 committed by GitHub
parent 7861dfd26a
commit bee2a11946
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -403,11 +403,11 @@ def _shutdown_all_methods_in_many_threads(self, immediate):
for thread in ps[1:]:
thread.join()
@unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
@unittest.skip("test times out (gh-115258)")
def test_shutdown_all_methods_in_many_threads(self):
return self._shutdown_all_methods_in_many_threads(False)
@unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
@unittest.skip("test times out (gh-115258)")
def test_shutdown_immediate_all_methods_in_many_threads(self):
return self._shutdown_all_methods_in_many_threads(True)