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

using new strategy for marking slow tests

parent c40cb6b7
No related branches found
No related tags found
2 merge requests!10Roe tests,!8Test refactoring
......@@ -52,7 +52,7 @@ def test_matvec(ctx_factory):
compare.arrays(a@b, c)
@pytest.mark.skip("slow")
@pytest.mark.slow
def test_compute_flux_derivatives(ctx_factory):
queue = device.get_queue(ctx_factory)
prg = program.get_weno()
......@@ -64,7 +64,7 @@ def test_compute_flux_derivatives(ctx_factory):
kernel.compute_flux_derivatives(queue, prg, params, arrays)
@pytest.mark.skip("slow")
@pytest.mark.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