Skip to content

Commit 8826328

Browse files
Integ-tests: Change the number of EFS and FSx used in the integration tests benchmark
We lowered the limit of the number of EFS and FSx aws#3977 but forgot to change the test Signed-off-by: Hanwen <[email protected]>
1 parent 90a3b6b commit 8826328

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration-tests/tests/storage/test_efs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def test_multiple_efs(
9090
existing_efs_mount_dirs = []
9191
if request.config.getoption("benchmarks") and os == "alinux2":
9292
# Only create more EFS when benchmarks are specified. Limiting OS to reduce cost of too many file systems
93-
num_existing_efs = 50
93+
num_existing_efs = 20
9494
else:
9595
num_existing_efs = 2
9696
existing_efs_ids = efs_stack_factory(num_existing_efs)

tests/integration-tests/tests/storage/test_fsx_lustre.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def test_multiple_fsx(
277277
num_existing_fsx_open_zfs_volumes = 2 if partition == "aws" else 0 # China and GovCloud do not have OpenZFS.
278278
if request.config.getoption("benchmarks") and os == "alinux2":
279279
# Only create more FSx when benchmarks are specified. Limiting OS to reduce cost of too many file systems
280-
num_existing_fsx = 50
280+
num_existing_fsx = 20
281281
else:
282282
# Minimal total existing FSx is the number of Ontap and OpenZFS plus one existing FSx Lustre
283283
num_existing_fsx = num_existing_fsx_ontap_volumes + num_existing_fsx_open_zfs_volumes + 1

0 commit comments

Comments
 (0)