Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable failed REST API tests #6302

Merged
merged 1 commit into from
Jun 13, 2023
Merged
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
2 changes: 2 additions & 0 deletions tests/python/rest_api/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1898,6 +1898,7 @@ def _delete_annotations(self, task_id):
(_, response) = api_client.tasks_api.destroy_annotations(id=task_id)
assert response.status == HTTPStatus.NO_CONTENT

@pytest.mark.skip("Fails sometimes, needs to be fixed")
@pytest.mark.timeout(70)
@pytest.mark.parametrize("successful_upload", [True, False])
def test_can_import_annotations_after_previous_unclear_import(
Expand Down Expand Up @@ -1946,6 +1947,7 @@ def test_can_import_annotations_after_previous_unclear_import(
task.import_annotations(self.format, filename)
self._check_annotations(task_id)

@pytest.mark.skip("Fails sometimes, needs to be fixed")
@pytest.mark.timeout(70)
def test_check_import_cache_after_previous_interrupted_upload(self, tasks_with_shapes, request):
task_id = tasks_with_shapes[0]["id"]
Expand Down