From 08b0844e52f38d4ce1c7a52c108063033c5182cd Mon Sep 17 00:00:00 2001 From: "Timothy A. Smith" <tasmith4@illinois.edu> Date: Wed, 29 May 2019 10:44:35 -0500 Subject: [PATCH] skipping slow tests always for now since we don't have the new marker yet --- test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test.py b/test.py index 146e052..2748ded 100644 --- a/test.py +++ b/test.py @@ -13,6 +13,7 @@ import setup_fixtures as setup import kernel_fixtures as kernel import comparison_fixtures as compare + def test_matvec(ctx_factory): queue = device.get_queue(ctx_factory) prg = program.get_weno() @@ -25,6 +26,7 @@ def test_matvec(ctx_factory): compare.arrays(a@b, c) +@pytest.mark.skip("slow") def test_compute_flux_derivatives(ctx_factory): queue = device.get_queue(ctx_factory) prg = program.get_weno() @@ -36,6 +38,7 @@ def test_compute_flux_derivatives(ctx_factory): kernel.compute_flux_derivatives(queue, prg, params, arrays) +@pytest.mark.skip("slow") def test_compute_flux_derivatives_gpu(ctx_factory): queue = device.get_queue(ctx_factory) prg = program.get_weno() -- GitLab