Skip to content

Commit 2a31d99

Browse files
committed
Make sure test_interop.py is not run on native since AOT_INCOMPATIBLE_TESTS is not consistently respected
1 parent 0baa5fe commit 2a31d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_interop.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def __delitem__(self, key):
104104
class PyString(str):
105105
pass
106106

107-
@skipUnless(sys.implementation.name == "graalpy", "interop")
107+
@skipUnless(sys.implementation.name == "graalpy" and not __graalpython__.is_native, "interop")
108108
class InteropTests(unittest.TestCase):
109109
def test_import(self):
110110
def some_function():

0 commit comments

Comments
 (0)