Skip to content

Commit 94c66e0

Browse files
Skip tests for PR7177 and add reasons
1 parent 61f9a44 commit 94c66e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

numba_dppy/tests/test_debug_dppy_numba.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def test_break_conditional(app):
171171
app.child.expect(r"\$1 = 1")
172172

173173

174-
@pytest.mark.xfail(raises=pexpect.TIMEOUT, reason="Need a Numba with PR7177")
174+
@pytest.mark.skip(reason="Need a Numba with PR7177")
175175
def test_break_conditional_with_func_arg(app):
176176
app.breakpoint("simple_dppy_func.py:23 if a_in_func == 3")
177177
app.run("simple_dppy_func.py")
@@ -214,7 +214,7 @@ def test_break_nested_function(app):
214214
app.child.expect(r"23\s+result = a_in_func \+ b_in_func")
215215

216216

217-
@pytest.mark.xfail(raises=pexpect.TIMEOUT, reason="Need a Numba with PR7177")
217+
@pytest.mark.skip(reason="Need a Numba with PR7177")
218218
def test_info_args(app):
219219
app.breakpoint("simple_dppy_func.py:29")
220220
app.run("simple_dppy_func.py")
@@ -239,7 +239,7 @@ def test_info_args(app):
239239

240240

241241
# commands/info_func
242-
@pytest.mark.xfail(raises=pexpect.TIMEOUT, reasos="CI fails")
242+
@pytest.mark.skip(reasos="Need a Numba with PR7177")
243243
def test_info_functions(app):
244244
app.breakpoint("simple_sum.py:23")
245245
app.run("simple_sum.py")
@@ -253,7 +253,7 @@ def test_info_functions(app):
253253

254254

255255
# commands/local_variables_0
256-
@pytest.mark.xfail(raises=pexpect.TIMEOUT, reason="Need a Numba with PR7177")
256+
@pytest.mark.skip(reason="Need a Numba with PR7177")
257257
def test_local_variables(app):
258258
app.breakpoint("sum_local_vars.py:26")
259259
app.run("sum_local_vars.py")

0 commit comments

Comments
 (0)