Skip to content
Snippets Groups Projects
Commit 08b0844e authored by Timothy A. Smith's avatar Timothy A. Smith
Browse files

skipping slow tests always for now since we don't have the new marker yet

parent 112064d1
No related branches found
No related tags found
2 merge requests!10Roe tests,!8Test refactoring
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment