Skip to content

Commit

Permalink
Use skip instead of xfail
Browse files Browse the repository at this point in the history
  • Loading branch information
yimoj committed Jun 12, 2023
1 parent 563eee8 commit f190df3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/integration/test_random_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -412,10 +412,9 @@ def test_randint_int16_bound(self):
"randint", expected_exc, 34567, dtype=np.int16
)

@pytest.mark.xfail(
@pytest.mark.skipif(
os.environ.get("REALM_SYNTHETIC_CORE_MAP", None) == "",
reason="cunumeric hit FPE",
run=False,
)
@pytest.mark.xfail(reason="cuNumeric does not check the bound")
def test_randint_higher_bound_zero(self):
Expand Down

0 comments on commit f190df3

Please sign in to comment.