From e11d5111f41c6dc807719aac22ecc0762480279f Mon Sep 17 00:00:00 2001 From: Frederik Hennig <frederik.hennig@fau.de> Date: Tue, 9 Jul 2024 22:17:33 +0200 Subject: [PATCH] xfail instead of skip --- tests/symbolics/test_abs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/symbolics/test_abs.py b/tests/symbolics/test_abs.py index daa4b17c1..daab354a3 100644 --- a/tests/symbolics/test_abs.py +++ b/tests/symbolics/test_abs.py @@ -8,7 +8,7 @@ import sympy def test_abs(target): if target == ps.Target.GPU: # FIXME - pytest.skip("GPU target not ready yet") + pytest.xfail("GPU target not ready yet") x, y, z = ps.fields('x, y, z: int64[2d]') -- GitLab