Skip to content

Commit c7f5e9b

Browse files
committed
a file somehow got out of sync with repo
1 parent d412ed5 commit c7f5e9b

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

autotest/test_testmodels_mf6.py

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

29-
excluded_comparisons = [
30-
"test051_uzfp3_lakmvr_v2_dev",
31-
"test051_uzfp3_wellakmvr_v2",
32-
]
3329

3430
@pytest.mark.repo
3531
@pytest.mark.regression
@@ -43,20 +39,17 @@ def test_model(
4339
):
4440
model_path = test_model_mf6.parent
4541
model_name = model_path.name
46-
exclude_model = model_name in excluded_models
47-
exclude_comparison = model_name in excluded_comparisons
42+
excluded = model_name in excluded_models
4843
compare = (
4944
get_mf6_comparison(model_path)
5045
if original_regression
51-
else None if exclude_comparison
5246
else "mf6_regression"
5347
)
5448
dev_only = "dev" in model_name and "not developmode" in markers
55-
if exclude_model or dev_only:
56-
reason = "excluded" if exclude_model else "developmode only"
49+
if excluded or dev_only:
50+
reason = "excluded" if excluded else "developmode only"
5751
pytest.skip(f"Skipping: {model_name} ({reason})")
5852

59-
6053
# setup test workspace and framework
6154
setup_mf6(src=model_path, dst=function_tmpdir)
6255
test = TestFramework(

0 commit comments

Comments
 (0)