File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 (
You can’t perform that action at this time.
0 commit comments