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