From c336e44b50ca01f793070467fb5ff7f52a96c121 Mon Sep 17 00:00:00 2001
From: "Timothy A. Smith" <tasmith4@illinois.edu>
Date: Mon, 27 May 2019 10:27:14 -0500
Subject: [PATCH] mark slow and failing tests that we don't want to focus on
 right now

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

diff --git a/test.py b/test.py
index 2446f40..f79d1ab 100644
--- a/test.py
+++ b/test.py
@@ -27,6 +27,7 @@ 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")
 
@@ -92,6 +93,7 @@ def get_gpu_transformed_weno():
     return prg
 
 
+@pytest.mark.xfail
 def test_compute_flux_derivatives_gpu(ctx_factory):
     logging.basicConfig(level="INFO")
 
-- 
GitLab