Skip to content

Commit b03a5b2

Browse files
committed
skip test on pypy
1 parent 0849893 commit b03a5b2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

jupyter_client/tests/test_session.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Distributed under the terms of the Modified BSD License.
44
import hmac
55
import os
6+
import platform
67
import uuid
78
from datetime import datetime
89
from unittest import mock
@@ -164,6 +165,7 @@ def test_args(self):
164165
self.assertEqual(s.session, u)
165166
self.assertEqual(s.username, "carrot")
166167

168+
@pytest.mark.skipif(platform.python_implementation() == 'PyPy', reason='Test fails on PyPy')
167169
def test_tracking(self):
168170
"""test tracking messages"""
169171
a, b = self.create_bound_pair(zmq.PAIR, zmq.PAIR)

0 commit comments

Comments
 (0)