@@ -734,6 +734,9 @@ def test_broadcast_dataset(dtype):
734
734
"coords" ,
735
735
),
736
736
)
737
+ @pytest .mark .filterwarnings (
738
+ "ignore:.*the default value for coords will change:FutureWarning"
739
+ )
737
740
def test_combine_by_coords (variant , unit , error , dtype ):
738
741
original_unit = unit_registry .m
739
742
@@ -811,6 +814,12 @@ def test_combine_by_coords(variant, unit, error, dtype):
811
814
"coords" ,
812
815
),
813
816
)
817
+ @pytest .mark .filterwarnings (
818
+ "ignore:.*the default value for join will change:FutureWarning"
819
+ )
820
+ @pytest .mark .filterwarnings (
821
+ "ignore:.*the default value for compat will change:FutureWarning"
822
+ )
814
823
def test_combine_nested (variant , unit , error , dtype ):
815
824
original_unit = unit_registry .m
816
825
@@ -1051,6 +1060,12 @@ def test_concat_dataset(variant, unit, error, dtype):
1051
1060
"coords" ,
1052
1061
),
1053
1062
)
1063
+ @pytest .mark .filterwarnings (
1064
+ "ignore:.*the default value for join will change:FutureWarning"
1065
+ )
1066
+ @pytest .mark .filterwarnings (
1067
+ "ignore:.*the default value for compat will change:FutureWarning"
1068
+ )
1054
1069
def test_merge_dataarray (variant , unit , error , dtype ):
1055
1070
original_unit = unit_registry .m
1056
1071
@@ -1155,6 +1170,12 @@ def test_merge_dataarray(variant, unit, error, dtype):
1155
1170
"coords" ,
1156
1171
),
1157
1172
)
1173
+ @pytest .mark .filterwarnings (
1174
+ "ignore:.*the default value for join will change:FutureWarning"
1175
+ )
1176
+ @pytest .mark .filterwarnings (
1177
+ "ignore:.*the default value for compat will change:FutureWarning"
1178
+ )
1158
1179
def test_merge_dataset (variant , unit , error , dtype ):
1159
1180
original_unit = unit_registry .m
1160
1181
@@ -5573,6 +5594,12 @@ def test_content_manipulation(self, func, variant, dtype):
5573
5594
"coords" ,
5574
5595
),
5575
5596
)
5597
+ @pytest .mark .filterwarnings (
5598
+ "ignore:.*the default value for join will change:FutureWarning"
5599
+ )
5600
+ @pytest .mark .filterwarnings (
5601
+ "ignore:.*the default value for compat will change:FutureWarning"
5602
+ )
5576
5603
def test_merge (self , variant , unit , error , dtype ):
5577
5604
left_variants = {
5578
5605
"data" : (unit_registry .m , 1 , 1 ),
0 commit comments