From f3a2d6b2a0787465f56ac97cdccc802edfd4905f Mon Sep 17 00:00:00 2001
From: "Timothy A. Smith" <tasmith4@illinois.edu>
Date: Mon, 17 Jun 2019 10:59:11 -0500
Subject: [PATCH] run all tests, even slow ones

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

diff --git a/test.py b/test.py
index 924171f..e97a345 100644
--- a/test.py
+++ b/test.py
@@ -53,7 +53,7 @@ def test_matvec(ctx_factory):
     compare.arrays(a@b, c)
 
 
-@pytest.mark.slow
+#@pytest.mark.slow
 def test_compute_flux_derivatives(ctx_factory):
     queue = device.get_queue(ctx_factory)
     prg = program.get_weno()
@@ -65,7 +65,7 @@ def test_compute_flux_derivatives(ctx_factory):
     kernel.compute_flux_derivatives(queue, prg, params, arrays)
 
 
-@pytest.mark.slow
+#@pytest.mark.slow
 def test_compute_flux_derivatives_gpu(ctx_factory):
     queue = device.get_queue(ctx_factory)
     prg = program.get_weno()
-- 
GitLab