Skip to content

Commit 898f7ec

Browse files
committed
Temporarily skip HPy tests 'test_builtin_handles' and 'test_bool'.
1 parent 27f4da6 commit 898f7ec

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

graalpython/lib-graalpython/modules/hpy/test/test_basic.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"fake pytest module")
88
"""
99
from .support import HPyTest
10+
import pytest
1011

1112

1213
class TestBasic(HPyTest):
@@ -115,6 +116,7 @@ def test_close(self):
115116
""")
116117
assert mod.f(41.5) == 42.5
117118

119+
@pytest.mark.xfail
118120
def test_bool(self):
119121
mod = self.make_module("""
120122
HPy_DEF_METH_O(f)
@@ -173,6 +175,7 @@ def test_exception_occurred(self):
173175
mod.f("not an integer")
174176
assert str(exc.value) == 'hello world'
175177

178+
@pytest.mark.xfail
176179
def test_builtin_handles(self):
177180
import pytest
178181
mod = self.make_module("""

0 commit comments

Comments
 (0)