@@ -108,6 +108,7 @@ def compare_netcdf_data(base, gen):
108
108
assert np .allclose (da .data , xrg .coords [varname ].data )
109
109
110
110
111
+ @pytest .mark .regression
111
112
def test_load_gwfsto01 (function_tmpdir , example_data_path ):
112
113
data_path_base = example_data_path / "mf6" / "netcdf"
113
114
tests = {
@@ -168,6 +169,7 @@ def test_load_gwfsto01(function_tmpdir, example_data_path):
168
169
compare_netcdf (base , gen )
169
170
170
171
172
+ @pytest .mark .regression
171
173
def test_update_gwfsto01 (function_tmpdir , example_data_path ):
172
174
data_path_base = example_data_path / "mf6" / "netcdf"
173
175
tests = {
@@ -258,6 +260,7 @@ def test_update_gwfsto01(function_tmpdir, example_data_path):
258
260
compare_netcdf (base , gen , update = update )
259
261
260
262
263
+ @pytest .mark .regression
261
264
def test_create_gwfsto01 (function_tmpdir , example_data_path ):
262
265
data_path_base = example_data_path / "mf6" / "netcdf"
263
266
tests = {
@@ -498,6 +501,7 @@ def test_create_gwfsto01(function_tmpdir, example_data_path):
498
501
compare_netcdf (base , gen )
499
502
500
503
504
+ @pytest .mark .regression
501
505
def test_gwfsto01 (function_tmpdir , example_data_path ):
502
506
data_path_base = example_data_path / "mf6" / "netcdf"
503
507
tests = {
@@ -641,6 +645,7 @@ def test_gwfsto01(function_tmpdir, example_data_path):
641
645
)
642
646
643
647
648
+ @pytest .mark .regression
644
649
def test_load_disv01b (function_tmpdir , example_data_path ):
645
650
data_path_base = example_data_path / "mf6" / "netcdf"
646
651
tests = {
@@ -693,6 +698,7 @@ def test_load_disv01b(function_tmpdir, example_data_path):
693
698
compare_netcdf (base , gen )
694
699
695
700
701
+ @pytest .mark .regression
696
702
def test_update_disv01b (function_tmpdir , example_data_path ):
697
703
data_path_base = example_data_path / "mf6" / "netcdf"
698
704
tests = {
@@ -786,6 +792,7 @@ def test_update_disv01b(function_tmpdir, example_data_path):
786
792
compare_netcdf (base , gen , update = update )
787
793
788
794
795
+ @pytest .mark .regression
789
796
def test_create_disv01b (function_tmpdir , example_data_path ):
790
797
data_path_base = example_data_path / "mf6" / "netcdf"
791
798
tests = {
@@ -876,6 +883,7 @@ def test_create_disv01b(function_tmpdir, example_data_path):
876
883
compare_netcdf (base , gen )
877
884
878
885
886
+ @pytest .mark .regression
879
887
def test_disv01b (function_tmpdir , example_data_path ):
880
888
data_path_base = example_data_path / "mf6" / "netcdf"
881
889
tests = {
@@ -1013,6 +1021,7 @@ def test_disv01b(function_tmpdir, example_data_path):
1013
1021
)
1014
1022
1015
1023
1024
+ @pytest .mark .regression
1016
1025
def test_dis_transform (function_tmpdir , example_data_path ):
1017
1026
transform_ws = function_tmpdir
1018
1027
cmp_pth = transform_ws / "compare"
@@ -1071,6 +1080,7 @@ def test_dis_transform(function_tmpdir, example_data_path):
1071
1080
1072
1081
1073
1082
@requires_exe ("triangle" )
1083
+ @pytest .mark .regression
1074
1084
def test_disv_transform (function_tmpdir , example_data_path ):
1075
1085
# create triangular grid
1076
1086
from flopy .utils .triangle import Triangle
0 commit comments