File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed 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+ ]
2933
3034@pytest .mark .repo
3135@pytest .mark .regression
@@ -39,17 +43,20 @@ def test_model(
3943):
4044 model_path = test_model_mf6 .parent
4145 model_name = model_path .name
42- excluded = model_name in excluded_models
46+ exclude_model = model_name in excluded_models
47+ exclude_comparison = model_name in excluded_comparisons
4348 compare = (
4449 get_mf6_comparison (model_path )
4550 if original_regression
51+ else None if exclude_comparison
4652 else "mf6_regression"
4753 )
4854 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"
55+ if exclude_model or dev_only :
56+ reason = "excluded" if exclude_model else "developmode only"
5157 pytest .skip (f"Skipping: { model_name } ({ reason } )" )
5258
59+
5360 # setup test workspace and framework
5461 setup_mf6 (src = model_path , dst = function_tmpdir )
5562 test = TestFramework (
You can’t perform that action at this time.
0 commit comments