@@ -280,6 +280,7 @@ def test_dataset_by_name_cannot_access_private_data(self):
280280 self .use_production_server ()
281281 self .assertRaises (OpenMLPrivateDatasetError , openml .datasets .get_dataset , "NAME_GOES_HERE" )
282282
283+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
283284 def test_get_dataset_lazy_all_functions (self ):
284285 """Test that all expected functionality is available without downloading the dataset."""
285286 dataset = openml .datasets .get_dataset (1 )
@@ -664,6 +665,7 @@ def test_attributes_arff_from_df_unknown_dtype(self):
664665 with pytest .raises (ValueError , match = err_msg ):
665666 attributes_arff_from_df (df )
666667
668+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
667669 def test_create_dataset_numpy (self ):
668670 data = np .array ([[1 , 2 , 3 ], [1.2 , 2.5 , 3.8 ], [2 , 5 , 8 ], [0 , 1 , 0 ]]).T
669671
@@ -751,6 +753,7 @@ def test_create_dataset_list(self):
751753 ), "Uploaded ARFF does not match original one"
752754 assert _get_online_dataset_format (dataset .id ) == "arff" , "Wrong format for dataset"
753755
756+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
754757 def test_create_dataset_sparse (self ):
755758 # test the scipy.sparse.coo_matrix
756759 sparse_data = scipy .sparse .coo_matrix (
@@ -868,6 +871,7 @@ def test_get_online_dataset_arff(self):
868871 return_type = arff .DENSE if d_format == "arff" else arff .COO ,
869872 ), "ARFF files are not equal"
870873
874+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
871875 def test_topic_api_error (self ):
872876 # Check server exception when non-admin accessses apis
873877 self .assertRaisesRegex (
@@ -895,6 +899,7 @@ def test_get_online_dataset_format(self):
895899 dataset_id
896900 ), "The format of the ARFF files is different"
897901
902+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
898903 def test_create_dataset_pandas (self ):
899904 data = [
900905 ["a" , "sunny" , 85.0 , 85.0 , "FALSE" , "no" ],
@@ -1119,6 +1124,7 @@ def test_ignore_attributes_dataset(self):
11191124 paper_url = paper_url ,
11201125 )
11211126
1127+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
11221128 def test_publish_fetch_ignore_attribute (self ):
11231129 """Test to upload and retrieve dataset and check ignore_attributes"""
11241130 data = [
@@ -1237,6 +1243,7 @@ def test_create_dataset_row_id_attribute_error(self):
12371243 paper_url = paper_url ,
12381244 )
12391245
1246+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
12401247 def test_create_dataset_row_id_attribute_inference (self ):
12411248 # meta-information
12421249 name = f"{ self ._get_sentinel ()} -pandas_testing_dataset"
@@ -1400,6 +1407,7 @@ def test_data_edit_non_critical_field(self):
14001407 edited_dataset = openml .datasets .get_dataset (did )
14011408 assert edited_dataset .description == desc
14021409
1410+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
14031411 def test_data_edit_critical_field (self ):
14041412 # Case 2
14051413 # only owners (or admin) can edit all critical fields of datasets
@@ -1448,6 +1456,7 @@ def test_data_edit_requires_valid_dataset(self):
14481456 description = "xor operation dataset" ,
14491457 )
14501458
1459+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
14511460 def test_data_edit_cannot_edit_critical_field_if_dataset_has_task (self ):
14521461 # Need to own a dataset to be able to edit meta-data
14531462 # Will be creating a forked version of an existing dataset to allow the unit test user
0 commit comments