Skip to content

Commit 180aeae

Browse files
committed
some regression comparison tests not expected to pass with this PR
1 parent e0d3766 commit 180aeae

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

autotest/test_testmodels_mf6.py

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
"test014_NWTP3Low_dev",
2323
]
2424

25+
excluded_comparisons = [
26+
"test051_uzfp3_lakmvr_v2_dev",
27+
"test051_uzfp3_wellakmvr_v2",
28+
]
29+
2530

2631
@pytest.mark.repo
2732
@pytest.mark.regression
@@ -35,13 +40,18 @@ def test_model(
3540
):
3641
model_path = test_model_mf6.parent
3742
model_name = model_path.name
38-
excluded = model_name in excluded_models
43+
exclude_model = model_name in excluded_models
44+
exclude_comparison = model_name in excluded_comparisons
3945
compare = (
40-
get_mf6_comparison(model_path) if original_regression else "mf6_regression"
46+
get_mf6_comparison(model_path)
47+
if original_regression
48+
else None
49+
if exclude_comparison
50+
else "mf6_regression"
4151
)
4252
dev_only = "dev" in model_name and "not developmode" in markers
43-
if excluded or dev_only:
44-
reason = "excluded" if excluded else "developmode only"
53+
if exclude_model or dev_only:
54+
reason = "excluded" if exclude_model else "developmode only"
4555
pytest.skip(f"Skipping: {model_name} ({reason})")
4656

4757
# setup test workspace and framework

0 commit comments

Comments
 (0)