Skip to content

Commit b3073a3

Browse files
committed
test_set: skip not yet supported tests
1 parent c0194fe commit b3073a3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graalpython/lib-python/3/test/test_set.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
import unittest
23
from test import support
34
import gc
@@ -308,6 +309,7 @@ def test_badcmp(self):
308309
self.assertRaises(RuntimeError, s.discard, BadCmp())
309310
self.assertRaises(RuntimeError, s.remove, BadCmp())
310311

312+
@unittest.skipIf(sys.implementation.name == 'graalpython', 'Functionality not yet supported')
311313
def test_cyclical_repr(self):
312314
w = ReprWrapper()
313315
s = self.thetype([w])
@@ -318,6 +320,7 @@ def test_cyclical_repr(self):
318320
name = repr(s).partition('(')[0] # strip class name
319321
self.assertEqual(repr(s), '%s({%s(...)})' % (name, name))
320322

323+
@unittest.skipIf(sys.implementation.name == 'graalpython', 'Functionality not yet supported')
321324
def test_cyclical_print(self):
322325
w = ReprWrapper()
323326
s = self.thetype([w])

0 commit comments

Comments
 (0)