Skip to content

Commit 68778b6

Browse files
authored
Find tests that are skipped in every configuration (#1969)
* Find tests that are skipped everywhere * Address some of the comments in the PR
1 parent 5a980e3 commit 68778b6

2 files changed

Lines changed: 428 additions & 0 deletions

File tree

cuda_bindings/tests/test_cuda.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ def callableBinary(name):
4343
return shutil.which(name) is not None
4444

4545

46+
@pytest.mark.skipif(True, reason="Always skip!")
47+
def test_always_skip():
48+
pass
49+
50+
4651
def test_cuda_memcpy():
4752
# Get device
4853

0 commit comments

Comments
 (0)