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 7577c2b commit 9205dfaCopy full SHA for 9205dfa
graalpython/com.oracle.graal.python.hpy.test/src/hpytest/test_hpytype.py
@@ -1616,7 +1616,10 @@ class TestPureHPyType(HPyTest):
1616
1617
ExtensionTemplate = PointTemplate
1618
1619
- def test_builtin_shape(self):
+ 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')
1623
mod = self.make_module("""
1624
@DEFINE_PointObject(HPyType_BuiltinShape_Long)
1625
@DEFINE_Point_xy
0 commit comments