From 7c032810e47ab17cdd03e1ad805d7172ac6b010b Mon Sep 17 00:00:00 2001 From: "Timothy A. Smith" <tasmith4@illinois.edu> Date: Tue, 28 May 2019 22:51:18 -0500 Subject: [PATCH] remove skips --- test.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test.py b/test.py index 067365f..821db6c 100644 --- a/test.py +++ b/test.py @@ -24,7 +24,6 @@ def test_matvec(ctx_factory): compare.arrays(a@b, c) -@pytest.mark.skip("slow") def test_compute_flux_derivatives(ctx_factory): params = setup.FluxDerivativeParams(ndim=3, nvars=5, nx=10, ny=10, nz=10) arrays = setup.random_flux_derivative_arrays(params) @@ -32,7 +31,6 @@ def test_compute_flux_derivatives(ctx_factory): kernel.compute_flux_derivatives(ctx_factory, params, arrays) -@pytest.mark.skip("slow") def test_compute_flux_derivatives_gpu(ctx_factory): params = setup.FluxDerivativeParams(ndim=3, nvars=5, nx=10, ny=10, nz=10) arrays = setup.random_flux_derivative_arrays_on_device(ctx_factory, params) -- GitLab