Skip to content

Commit 537499d

Browse files
committed
reinstate
1 parent b7d0b0c commit 537499d

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

autotest/test_testmodels_mf6.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@
2626
"test014_NWTP3Low_dev",
2727
]
2828

29+
excluded_comparisons = [
30+
"test051_uzfp3_lakmvr_v2_dev",
31+
"test051_uzfp3_wellakmvr_v2",
32+
]
33+
2934

3035
@pytest.mark.repo
3136
@pytest.mark.regression
@@ -39,15 +44,17 @@ def test_model(
3944
):
4045
model_path = test_model_mf6.parent
4146
model_name = model_path.name
42-
excluded = model_name in excluded_models
47+
exclude_model = model_name in excluded_models
48+
exclude_comparison = model_name in excluded_comparisons
4349
compare = (
4450
get_mf6_comparison(model_path)
4551
if original_regression
52+
else None if exclude_comparison
4653
else "mf6_regression"
4754
)
4855
dev_only = "dev" in model_name and "not developmode" in markers
49-
if excluded or dev_only:
50-
reason = "excluded" if excluded else "developmode only"
56+
if exclude_model or dev_only:
57+
reason = "excluded" if exclude_model else "developmode only"
5158
pytest.skip(f"Skipping: {model_name} ({reason})")
5259

5360
# setup test workspace and framework

0 commit comments

Comments
 (0)