Skip threading tests for pypy builds of pycapnp
This commit is contained in:
@@ -5,7 +5,7 @@ import socket
|
||||
import threading
|
||||
import platform
|
||||
|
||||
|
||||
@pytest.mark.skipif(platform.python_implementation() == 'PyPy', reason="pycapnp's GIL handling isn't working properly at the moment for PyPy")
|
||||
def test_making_event_loop():
|
||||
capnp.remove_event_loop(True)
|
||||
capnp.create_event_loop()
|
||||
@@ -13,7 +13,7 @@ def test_making_event_loop():
|
||||
capnp.remove_event_loop()
|
||||
capnp.create_event_loop()
|
||||
|
||||
|
||||
@pytest.mark.skipif(platform.python_implementation() == 'PyPy', reason="pycapnp's GIL handling isn't working properly at the moment for PyPy")
|
||||
def test_making_threaded_event_loop():
|
||||
capnp.remove_event_loop(True)
|
||||
capnp.create_event_loop(True)
|
||||
|
||||
Reference in New Issue
Block a user