Skip to content

Commit

Permalink
a file somehow got out of sync with repo
Browse files Browse the repository at this point in the history
  • Loading branch information
emorway-usgs committed Sep 30, 2024
1 parent 84f629a commit b7d0b0c
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions autotest/test_testmodels_mf6.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@
"test014_NWTP3Low_dev",
]

excluded_comparisons = [
"test051_uzfp3_lakmvr_v2_dev",
"test051_uzfp3_wellakmvr_v2",
]

@pytest.mark.repo
@pytest.mark.regression
Expand All @@ -43,20 +39,17 @@ def test_model(
):
model_path = test_model_mf6.parent
model_name = model_path.name
exclude_model = model_name in excluded_models
exclude_comparison = model_name in excluded_comparisons
excluded = model_name in excluded_models
compare = (
get_mf6_comparison(model_path)
if original_regression
else None if exclude_comparison
else "mf6_regression"
)
dev_only = "dev" in model_name and "not developmode" in markers
if exclude_model or dev_only:
reason = "excluded" if exclude_model else "developmode only"
if excluded or dev_only:
reason = "excluded" if excluded else "developmode only"
pytest.skip(f"Skipping: {model_name} ({reason})")


# setup test workspace and framework
setup_mf6(src=model_path, dst=function_tmpdir)
test = TestFramework(
Expand Down

0 comments on commit b7d0b0c

Please sign in to comment.