Skip to content

Commit 9205dfa

Browse files
committed
Disable test_hpytype.py::test_builtin_shape[cpython]
1 parent 7577c2b commit 9205dfa

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

graalpython/com.oracle.graal.python.hpy.test/src/hpytest/test_hpytype.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1616,7 +1616,10 @@ class TestPureHPyType(HPyTest):
16161616

16171617
ExtensionTemplate = PointTemplate
16181618

1619-
def test_builtin_shape(self):
1619+
def test_builtin_shape(self, hpy_abi):
1620+
import pytest
1621+
if hpy_abi == 'cpython':
1622+
pytest.skip('native int subclasses are not supported on GraalPy')
16201623
mod = self.make_module("""
16211624
@DEFINE_PointObject(HPyType_BuiltinShape_Long)
16221625
@DEFINE_Point_xy

0 commit comments

Comments
 (0)