@@ -513,6 +513,7 @@ def test_deletion_of_cache_dir_faulty_download(self, patch):
513513 datasets_cache_dir = os .path .join (self .workdir , "org" , "openml" , "test" , "datasets" )
514514 assert len (os .listdir (datasets_cache_dir )) == 0
515515
516+ @pytest .mark .xfail (reason = "failures_issue_1544" )
516517 def test_publish_dataset (self ):
517518 # lazy loading not possible as we need the arff-file.
518519 openml .datasets .get_dataset (3 , download_data = True )
@@ -1389,6 +1390,7 @@ def test_get_dataset_cache_format_feather(self):
13891390 assert len (categorical ) == X .shape [1 ]
13901391 assert len (attribute_names ) == X .shape [1 ]
13911392
1393+ @pytest .mark .xfail (reason = "failures_issue_1544" )
13921394 def test_data_edit_non_critical_field (self ):
13931395 # Case 1
13941396 # All users can edit non-critical fields of datasets
@@ -1410,6 +1412,7 @@ def test_data_edit_non_critical_field(self):
14101412 edited_dataset = openml .datasets .get_dataset (did )
14111413 assert edited_dataset .description == desc
14121414
1415+ @pytest .mark .xfail (reason = "failures_issue_1544" )
14131416 def test_data_edit_critical_field (self ):
14141417 # Case 2
14151418 # only owners (or admin) can edit all critical fields of datasets
@@ -1458,6 +1461,7 @@ def test_data_edit_requires_valid_dataset(self):
14581461 description = "xor operation dataset" ,
14591462 )
14601463
1464+ @pytest .mark .xfail (reason = "failures_issue_1544" )
14611465 def test_data_edit_cannot_edit_critical_field_if_dataset_has_task (self ):
14621466 # Need to own a dataset to be able to edit meta-data
14631467 # Will be creating a forked version of an existing dataset to allow the unit test user
@@ -1533,7 +1537,7 @@ def test_list_datasets_with_high_size_parameter(self):
15331537 (None , None , ["wrong" , "sunny" ]),
15341538 ],
15351539)
1536- @pytest .mark .xfail (reason = "failures_issue_1544" )
1540+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
15371541def test_invalid_attribute_validations (
15381542 default_target_attribute ,
15391543 row_id_attribute ,
@@ -1595,7 +1599,7 @@ def test_invalid_attribute_validations(
15951599 (None , None , ["outlook" , "windy" ]),
15961600 ],
15971601)
1598- @pytest .mark .xfail (reason = "failures_issue_1544" )
1602+ @pytest .mark .xfail (reason = "failures_issue_1544" , strict = False )
15991603def test_valid_attribute_validations (default_target_attribute , row_id_attribute , ignore_attribute ):
16001604 data = [
16011605 ["a" , "sunny" , 85.0 , 85.0 , "FALSE" , "no" ],
0 commit comments