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 27f4da6 commit 898f7ecCopy full SHA for 898f7ec
graalpython/lib-graalpython/modules/hpy/test/test_basic.py
@@ -7,6 +7,7 @@
7
"fake pytest module")
8
"""
9
from .support import HPyTest
10
+import pytest
11
12
13
class TestBasic(HPyTest):
@@ -115,6 +116,7 @@ def test_close(self):
115
116
""")
117
assert mod.f(41.5) == 42.5
118
119
+ @pytest.mark.xfail
120
def test_bool(self):
121
mod = self.make_module("""
122
HPy_DEF_METH_O(f)
@@ -173,6 +175,7 @@ def test_exception_occurred(self):
173
175
mod.f("not an integer")
174
176
assert str(exc.value) == 'hello world'
177
178
179
def test_builtin_handles(self):
180
import pytest
181
0 commit comments