summaryrefslogtreecommitdiff
path: root/tests/test_pubsub.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_pubsub.py')
-rw-r--r--tests/test_pubsub.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_pubsub.py b/tests/test_pubsub.py
index 17a1621..6a4f0aa 100644
--- a/tests/test_pubsub.py
+++ b/tests/test_pubsub.py
@@ -1,6 +1,7 @@
import threading
import time
from unittest import mock
+import platform
import pytest
import redis
@@ -547,6 +548,9 @@ class TestPubSubTimeouts:
class TestPubSubWorkerThread:
+
+ @pytest.mark.skipif(platform.python_implementation() == 'PyPy',
+ reason="Pypy threading issue")
def test_pubsub_worker_thread_exception_handler(self, r):
event = threading.Event()