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

Update marshmallow requirement from ~=3.10 to ~=3.18 in /cli #126

Closed
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cli/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ boto3>=1.16.14
tabulate~=0.8
PyYAML~=5.3
jinja2~=3.0
marshmallow~=3.10
marshmallow~=3.18
aws-cdk.core~=1.137
aws-cdk.aws-batch~=1.137
aws_cdk.aws-cloudwatch~=1.137
Expand Down
2 changes: 1 addition & 1 deletion tests/integration-tests/tests/storage/test_efs.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def test_multiple_efs(
existing_efs_mount_dirs = []
if request.config.getoption("benchmarks") and os == "alinux2":
# Only create more EFS when benchmarks are specified. Limiting OS to reduce cost of too many file systems
num_existing_efs = 50
num_existing_efs = 20
else:
num_existing_efs = 2
existing_efs_ids = efs_stack_factory(num_existing_efs)
Expand Down
2 changes: 1 addition & 1 deletion tests/integration-tests/tests/storage/test_fsx_lustre.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def test_multiple_fsx(
num_existing_fsx_open_zfs_volumes = 2 if partition == "aws" else 0 # China and GovCloud do not have OpenZFS.
if request.config.getoption("benchmarks") and os == "alinux2":
# Only create more FSx when benchmarks are specified. Limiting OS to reduce cost of too many file systems
num_existing_fsx = 50
num_existing_fsx = 20
else:
# Minimal total existing FSx is the number of Ontap and OpenZFS plus one existing FSx Lustre
num_existing_fsx = num_existing_fsx_ontap_volumes + num_existing_fsx_open_zfs_volumes + 1
Expand Down