Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/test_evaluations/test_evaluation_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ def test_list_evaluations_setups_filter_flow(self):
assert all(elem in columns for elem in keys)

@pytest.mark.production()
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_list_evaluations_setups_filter_task(self):
self.use_production_server()
task_id = [6]
Expand Down
1 change: 1 addition & 0 deletions tests/test_flows/test_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def test_get_flow(self):
assert len(subflow_3.components) == 0

@pytest.mark.production()
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_get_structure(self):
# also responsible for testing: flow.get_subflow
# We need to use the production server here because 4024 is not the
Expand Down
3 changes: 3 additions & 0 deletions tests/test_flows/test_flow_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ def test_are_flows_equal_ignore_if_older(self):
"No known models with list of lists parameters in older versions.",
)
@pytest.mark.uses_test_server()
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_sklearn_to_flow_list_of_lists(self):
from sklearn.preprocessing import OrdinalEncoder

Expand Down Expand Up @@ -337,6 +338,7 @@ def test_get_flow_reinstantiate_model_no_extension(self):
reason="Requires scikit-learn!=0.19.1, because target flow is from that version.",
)
@pytest.mark.production()
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_get_flow_with_reinstantiate_strict_with_wrong_version_raises_exception(self):
self.use_production_server()
flow = 8175
Expand Down Expand Up @@ -527,6 +529,7 @@ def test_delete_flow_success(mock_delete, test_files_directory, test_api_key):


@mock.patch.object(requests.Session, "delete")
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_delete_unknown_flow(mock_delete, test_files_directory, test_api_key):
openml.config.start_using_configuration_for_example()
content_file = test_files_directory / "mock_responses" / "flows" / "flow_delete_not_exist.xml"
Expand Down
1 change: 1 addition & 0 deletions tests/test_runs/test_run_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -1567,6 +1567,7 @@ def test_get_runs_list_by_filters(self):
assert len(runs) == 2

@pytest.mark.production()
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_get_runs_list_by_tag(self):
# We don't have tagged runs on the test server
self.use_production_server()
Expand Down
1 change: 1 addition & 0 deletions tests/test_study/test_study_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ class TestStudyFunctions(TestBase):
_multiprocess_can_split_ = True

@pytest.mark.production()
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_get_study_old(self):
self.use_production_server()

Expand Down
1 change: 1 addition & 0 deletions tests/test_tasks/test_task_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def test__get_estimation_procedure_list(self):
assert estimation_procedures[0]["task_type_id"] == TaskType.SUPERVISED_CLASSIFICATION

@pytest.mark.production()
@pytest.mark.xfail(reason="failures_issue_1544", strict=False)
def test_list_clustering_task(self):
self.use_production_server()
# as shown by #383, clustering tasks can give list/dict casting problems
Expand Down