We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a94ed commit 2264afdCopy full SHA for 2264afd
1 file changed
tests/unit/backend/test_interactive_serial.py
@@ -45,6 +45,7 @@ def submit_init_error(socket):
45
46
47
class TestSerial(unittest.TestCase):
48
+ @unittest.skipIf(not sys._is_gil_enabled(), "Requires GIL to run")
49
def test_main_as_thread(self):
50
context = zmq.Context()
51
socket = context.socket(zmq.PAIR)
@@ -89,7 +90,6 @@ def test_main_as_thread_init_error(self):
89
90
socket.close()
91
context.term()
92
- @unittest.skipIf(not sys._is_gil_enabled(), "Requires GIL to run")
93
def test_submit_as_thread(self):
94
95
0 commit comments