We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0849893 commit b03a5b2Copy full SHA for b03a5b2
jupyter_client/tests/test_session.py
@@ -3,6 +3,7 @@
3
# Distributed under the terms of the Modified BSD License.
4
import hmac
5
import os
6
+import platform
7
import uuid
8
from datetime import datetime
9
from unittest import mock
@@ -164,6 +165,7 @@ def test_args(self):
164
165
self.assertEqual(s.session, u)
166
self.assertEqual(s.username, "carrot")
167
168
+ @pytest.mark.skipif(platform.python_implementation() == 'PyPy', reason='Test fails on PyPy')
169
def test_tracking(self):
170
"""test tracking messages"""
171
a, b = self.create_bound_pair(zmq.PAIR, zmq.PAIR)
0 commit comments