Skip to content

Commit 9849967

Browse files
committed
Remove the double skipIfRocm for good
1 parent 49f242c commit 9849967

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

test/common.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,6 @@ def _check_module_exists(name):
9898
import numpy
9999

100100

101-
def skipIfRocm(fn):
102-
@wraps(fn)
103-
def wrapper(*args, **kwargs):
104-
if TEST_WITH_ROCM:
105-
raise unittest.SkipTest("test doesn't currently work on the ROCm stack")
106-
else:
107-
fn(*args, **kwargs)
108-
return wrapper
109-
110101
def skipIfRocm(fn):
111102
@wraps(fn)
112103
def wrapper(*args, **kwargs):

0 commit comments

Comments
 (0)