From df53325df8b7c535404975bfafc0d89c3192e92f Mon Sep 17 00:00:00 2001 From: Assaf Ben-Amitai Date: Wed, 20 Mar 2024 10:29:32 +0000 Subject: [PATCH] [Tests] skipping test_v3io_large_object_upload as it hangs when running against the CI system [1.6.x] (#5308) --- tests/system/datastore/test_v3io.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/system/datastore/test_v3io.py b/tests/system/datastore/test_v3io.py index f1e107e1322..bb655315e53 100644 --- a/tests/system/datastore/test_v3io.py +++ b/tests/system/datastore/test_v3io.py @@ -86,6 +86,9 @@ def _setup_df_dir(self, first_file_path, second_file_path, file_extension): uploaded_data_item = mlrun.run.get_dataitem(dataitem_url) uploaded_data_item.upload(second_file_path) + @pytest.mark.skip( + reason="Skipping this test as it hangs when running against the CI system. ML-5598" + ) def test_v3io_large_object_upload(self, tmp_path): tempfile_1_path = os.path.join(tmp_path, "tempfile_1") tempfile_2_path = os.path.join(tmp_path, "tempfile_2")