We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f7512 commit c4a94edCopy full SHA for c4a94ed
1 file changed
tests/unit/backend/test_interactive_serial.py
@@ -1,5 +1,6 @@
1
from threading import Thread
2
import unittest
3
+import sys
4
5
import cloudpickle
6
import zmq
@@ -88,6 +89,7 @@ def test_main_as_thread_init_error(self):
88
89
socket.close()
90
context.term()
91
92
+ @unittest.skipIf(not sys._is_gil_enabled(), "Requires GIL to run")
93
def test_submit_as_thread(self):
94
context = zmq.Context()
95
socket = context.socket(zmq.PAIR)
0 commit comments