From 281ae279c5b4934beeb2110e4260b35040890f91 Mon Sep 17 00:00:00 2001 From: BryanFauble <17128019+BryanFauble@users.noreply.github.com> Date: Fri, 27 Oct 2023 11:25:23 -0700 Subject: [PATCH] mark as flaky --- .../synapseclient/core/upload/test_multipart_upload.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/synapseclient/core/upload/test_multipart_upload.py b/tests/integration/synapseclient/core/upload/test_multipart_upload.py index 29b6ed7d2..ff47f0c14 100644 --- a/tests/integration/synapseclient/core/upload/test_multipart_upload.py +++ b/tests/integration/synapseclient/core/upload/test_multipart_upload.py @@ -263,6 +263,7 @@ def _multipart_copy_test( assert file_content == dest_file_content +@pytest.mark.flaky(reruns=3, only_rerun=["SynapseHTTPError"]) def test_multipart_copy(syn: Synapse, project: Project, schedule_for_cleanup): """Test multi part copy using the minimum part size.""" _multipart_copy_test(syn, project, schedule_for_cleanup, MIN_PART_SIZE)