We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07333f7 commit 13c3265Copy full SHA for 13c3265
tests/datastore_cassandradriver/conftest.py
@@ -23,6 +23,7 @@
23
24
DB_SETTINGS = cassandra_settings()
25
PYTHON_VERSION = sys.version_info
26
+IS_PYPY = hasattr(sys, "pypy_version_info")
27
28
29
_default_settings = {
@@ -48,6 +49,8 @@ def connection_class(request):
48
49
reactor_name = request.param
50
51
if reactor_name == "Libev":
52
+ if IS_PYPY:
53
+ pytest.skip(reason="Libev not available for PyPy.")
54
from cassandra.io.libevreactor import LibevConnection as Connection
55
elif reactor_name == "AsyncCore":
56
if PYTHON_VERSION >= (3, 12):
0 commit comments