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

♻️ skipping AWS S3 CLI tests #6191

Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
matusdrobuliak66 marked this conversation as resolved.
Show resolved Hide resolved
@pytest.mark.parametrize(
"file_count, file_size, check_progress",
[
Expand Down Expand Up @@ -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",
[
Expand Down Expand Up @@ -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
):
Expand Down
Loading