Skip to content

Commit 9874e89

Browse files
committed
Fix gdb tests skip logic
1 parent b9436c1 commit 9874e89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numba_dpex/tests/_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def is_windows():
122122
]
123123

124124
skip_no_gdb = pytest.mark.skipif(
125-
config.TESTING_SKIP_NO_DEBUGGING and not shutil.which("gdb-oneapi"),
125+
config.TESTING_SKIP_NO_DEBUGGING or not shutil.which("gdb-oneapi"),
126126
reason="Intel® Distribution for GDB* is not available",
127127
)
128128

0 commit comments

Comments
 (0)