From 7530d52d42d90bbb07b0125e929a72b8be3fcfee Mon Sep 17 00:00:00 2001 From: "Timothy A. Smith" <tasmith4@illinois.edu> Date: Mon, 27 May 2019 10:37:08 -0500 Subject: [PATCH] remove decorators from skipped tests --- test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test.py b/test.py index 26fec70..84ce34c 100644 --- a/test.py +++ b/test.py @@ -28,7 +28,6 @@ def test_matvec(ctx_factory): assert la.norm(a@b - c, 2)/la.norm(c) < 1e-5 -@pytest.mark.skip("slow") def test_compute_flux_derivatives(ctx_factory): logging.basicConfig(level="INFO") @@ -94,7 +93,6 @@ def get_gpu_transformed_weno(): return prg -@pytest.mark.skip("fails") def test_compute_flux_derivatives_gpu(ctx_factory): logging.basicConfig(level="INFO") -- GitLab