Skip to content

Commit 9f9502f

Browse files
committed
pypy skipif
1 parent fabb657 commit 9f9502f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_pubsub.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import threading
22
import time
33
from unittest import mock
4+
import platform
45

56
import pytest
67
import redis
@@ -547,6 +548,8 @@ def test_get_message_with_timeout_returns_none(self, r):
547548

548549

549550
class TestPubSubWorkerThread:
551+
552+
@pytest.mark.skipif(platform.python_implementation() == 'PyPy', reason="Pypy threading issue")
550553
def test_pubsub_worker_thread_exception_handler(self, r):
551554
event = threading.Event()
552555

0 commit comments

Comments
 (0)