We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60c60c1 commit 8f5f7faCopy full SHA for 8f5f7fa
rbc/tests/heavyai/test_array_api_unsupported.py
@@ -37,6 +37,7 @@ def heavydb():
37
38
# ensure unimplemented functions raise a meaninful exception
39
@pytest.mark.parametrize('func_name', unsupported_functions)
40
+@pytest.mark.skip()
41
def test_unimplemented(heavydb, func_name):
42
43
func = getattr(array_api, func_name)
@@ -48,3 +49,4 @@ def test_exception_raised(x):
48
49
# NumbaNotSupportedError is captured and a TypingError is returned instead
50
with pytest.raises(TypingError, match=f'Function "{func_name}" is not supported.'):
51
heavydb.register()
52
+ heavydb.unregister()
0 commit comments