From 648ec71cc64b893b6b5073840b131fc8e8ce2546 Mon Sep 17 00:00:00 2001 From: "Timothy A. Smith" <tasmith4@illinois.edu> Date: Fri, 23 Aug 2019 11:34:58 -0500 Subject: [PATCH] add skeleton test to double-check if weno weight computation with expected data --- test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test.py b/test.py index 5e465ea..79b4b89 100644 --- a/test.py +++ b/test.py @@ -18,6 +18,10 @@ import utilities as u from data_for_test import flux_test_data_fixture # noqa: F401 +def test_weno_weight_computation(ctx_factory, flux_test_data_fixture): + data = flux_test_data_fixture + + @pytest.mark.slow def test_weno_flux_uniform_grid(ctx_factory, flux_test_data_fixture): data = flux_test_data_fixture -- GitLab