Skip to content

Commit 188fa56

Browse files
committed
chore: skip test_nothing in the simulator
1 parent 3d31059 commit 188fa56

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

numba_cuda/numba/cuda/tests/nrt/test_module.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55

66
from numba.cuda.cudadrv import devices
77
from numba.cuda.memory_management.nrt import rtsys
8+
from numba.cuda.core import config
9+
10+
11+
pytestmark = pytest.mark.skipif(
12+
condition=config.ENABLE_CUDASIM, reason="rtsys not enabled in the simulator"
13+
)
814

915

1016
@pytest.fixture

0 commit comments

Comments
 (0)