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

Style Linting: Placate Flake8 w/ more lines #1138

Merged
merged 2 commits into from
Nov 15, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ def test_s3_snapshot_create_calls_subprocess_run_with_correct_args(mocker):
"--max-snapshot-rate-mb-per-node", str(max_snapshot_rate),
], stdout=None, stderr=None, text=True, check=True)


def test_s3_snapshot_create_calls_subprocess_run_with_correct_s3_role(mocker):
s3_role = "arn:aws:iam::123456789012:role/OSMigrations-dev-us-west-1-default-SnapshotRole"
config = {
Expand Down Expand Up @@ -340,6 +341,7 @@ def test_fs_snapshot_create_works_for_clusters_with_basic_auth(mocker):
"--max-snapshot-rate-mb-per-node", str(max_snapshot_rate),
], stdout=None, stderr=None, text=True, check=True)


def test_fs_snapshot_create_works_for_clusters_with_sigv4(mocker):
config = {
"snapshot": {
Expand Down