From ace78533b374289325e24e6bc737dd3fb4222418 Mon Sep 17 00:00:00 2001
From: "Timothy A. Smith" <tasmith4@illinois.edu>
Date: Mon, 22 Jul 2019 22:56:57 -0500
Subject: [PATCH] remove slow marks from some tests that aren't actually slow

---
 test.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/test.py b/test.py
index 0c1f86f..75fabad 100644
--- a/test.py
+++ b/test.py
@@ -174,7 +174,6 @@ def test_roe_uniform_grid_ideal_gas(ctx_factory, data):
     check_roe_property(data.state_pair, data.flux_pair, R, R_inv, lam)
 
 
-@pytest.mark.slow
 @pytest.mark.parametrize("lam_pointwise_str,lam_roe_str,lam_expected_str", [
     ("1 2 3 4 5,2 4 6 8 10", "1.5 3 4.5 6 7.5", "2.2 4.4 6.6 8.8 11"),
     ("1 2 3 4 5,-2 -4 -6 -8 -10", "1.5 3 4.5 6 7.5", "2.2 4.4 6.6 8.8 11"),
@@ -200,7 +199,6 @@ def test_lax_wavespeeds(
     u.compare_arrays(lam_dev.get(), lam_expected)
 
 
-@pytest.mark.slow
 def test_matvec(ctx_factory):
     prg = u.get_weno_program_with_root_kernel("mult_mat_vec")
     queue = u.get_queue(ctx_factory)
-- 
GitLab