@@ -108,6 +108,7 @@ def compare_netcdf_data(base, gen):
108108 assert np .allclose (da .data , xrg .coords [varname ].data )
109109
110110
111+ @pytest .mark .regression
111112def test_load_gwfsto01 (function_tmpdir , example_data_path ):
112113 data_path_base = example_data_path / "mf6" / "netcdf"
113114 tests = {
@@ -168,6 +169,7 @@ def test_load_gwfsto01(function_tmpdir, example_data_path):
168169 compare_netcdf (base , gen )
169170
170171
172+ @pytest .mark .regression
171173def test_update_gwfsto01 (function_tmpdir , example_data_path ):
172174 data_path_base = example_data_path / "mf6" / "netcdf"
173175 tests = {
@@ -258,6 +260,7 @@ def test_update_gwfsto01(function_tmpdir, example_data_path):
258260 compare_netcdf (base , gen , update = update )
259261
260262
263+ @pytest .mark .regression
261264def test_create_gwfsto01 (function_tmpdir , example_data_path ):
262265 data_path_base = example_data_path / "mf6" / "netcdf"
263266 tests = {
@@ -498,6 +501,7 @@ def test_create_gwfsto01(function_tmpdir, example_data_path):
498501 compare_netcdf (base , gen )
499502
500503
504+ @pytest .mark .regression
501505def test_gwfsto01 (function_tmpdir , example_data_path ):
502506 data_path_base = example_data_path / "mf6" / "netcdf"
503507 tests = {
@@ -641,6 +645,7 @@ def test_gwfsto01(function_tmpdir, example_data_path):
641645 )
642646
643647
648+ @pytest .mark .regression
644649def test_load_disv01b (function_tmpdir , example_data_path ):
645650 data_path_base = example_data_path / "mf6" / "netcdf"
646651 tests = {
@@ -693,6 +698,7 @@ def test_load_disv01b(function_tmpdir, example_data_path):
693698 compare_netcdf (base , gen )
694699
695700
701+ @pytest .mark .regression
696702def test_update_disv01b (function_tmpdir , example_data_path ):
697703 data_path_base = example_data_path / "mf6" / "netcdf"
698704 tests = {
@@ -786,6 +792,7 @@ def test_update_disv01b(function_tmpdir, example_data_path):
786792 compare_netcdf (base , gen , update = update )
787793
788794
795+ @pytest .mark .regression
789796def test_create_disv01b (function_tmpdir , example_data_path ):
790797 data_path_base = example_data_path / "mf6" / "netcdf"
791798 tests = {
@@ -876,6 +883,7 @@ def test_create_disv01b(function_tmpdir, example_data_path):
876883 compare_netcdf (base , gen )
877884
878885
886+ @pytest .mark .regression
879887def test_disv01b (function_tmpdir , example_data_path ):
880888 data_path_base = example_data_path / "mf6" / "netcdf"
881889 tests = {
@@ -1013,6 +1021,7 @@ def test_disv01b(function_tmpdir, example_data_path):
10131021 )
10141022
10151023
1024+ @pytest .mark .regression
10161025def test_dis_transform (function_tmpdir , example_data_path ):
10171026 transform_ws = function_tmpdir
10181027 cmp_pth = transform_ws / "compare"
@@ -1071,6 +1080,7 @@ def test_dis_transform(function_tmpdir, example_data_path):
10711080
10721081
10731082@requires_exe ("triangle" )
1083+ @pytest .mark .regression
10741084def test_disv_transform (function_tmpdir , example_data_path ):
10751085 # create triangular grid
10761086 from flopy .utils .triangle import Triangle
0 commit comments