From a7fcbc013e933c5279d3722d2a95d25a024e4cd2 Mon Sep 17 00:00:00 2001 From: matusdrobuliak66 Date: Thu, 15 Aug 2024 13:45:48 +0200 Subject: [PATCH] skipping AWS S3 CLI tests --- .../integration/test_node_ports_common_aws_s3_cli.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packages/simcore-sdk/tests/integration/test_node_ports_common_aws_s3_cli.py b/packages/simcore-sdk/tests/integration/test_node_ports_common_aws_s3_cli.py index e5e77c29475..2d00bb0e1dd 100644 --- a/packages/simcore-sdk/tests/integration/test_node_ports_common_aws_s3_cli.py +++ b/packages/simcore-sdk/tests/integration/test_node_ports_common_aws_s3_cli.py @@ -243,6 +243,9 @@ async def dir_downloaded_files_2(tmp_path: Path, faker: Faker) -> AsyncIterator[ await remove_directory(path) +@pytest.mark.skip( + reason="We disabled the AWS S3 CLI and will use RClone for now; https://github.com/ITISFoundation/osparc-simcore/discussions/5828" +) @pytest.mark.parametrize( "file_count, file_size, check_progress", [ @@ -343,6 +346,9 @@ def _regression_add_broken_symlink( os.symlink(f"{path_does_not_exist_on_fs}", f"{broken_symlink}") +@pytest.mark.skip( + reason="We disabled the AWS S3 CLI and will use RClone for now; https://github.com/ITISFoundation/osparc-simcore/discussions/5828" +) @pytest.mark.parametrize( "changes_callable", [ @@ -411,6 +417,9 @@ async def test_overwrite_an_existing_file_and_sync_again( ) +@pytest.mark.skip( + reason="We disabled the AWS S3 CLI and will use RClone for now; https://github.com/ITISFoundation/osparc-simcore/discussions/5828" +) async def test_raises_error_if_local_directory_path_is_a_file( tmp_path: Path, faker: Faker, cleanup_bucket_after_test: None ):