We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2809bdc commit cbad9beCopy full SHA for cbad9be
services/storage/tests/unit/test_handlers_simcore_s3.py
@@ -481,6 +481,19 @@ async def test_create_and_delete_folders_from_project(
481
)
482
483
484
+@pytest.mark.parametrize(
485
+ "project_params",
486
+ [
487
+ ProjectWithFilesParams(
488
+ num_nodes=12,
489
+ allowed_file_sizes=(
490
+ TypeAdapter(ByteSize).validate_python("7Mib"),
491
+ TypeAdapter(ByteSize).validate_python("110Mib"),
492
+ TypeAdapter(ByteSize).validate_python("1Mib"),
493
+ ),
494
+ )
495
+ ],
496
+)
497
@pytest.mark.parametrize("num_concurrent_calls", [50])
498
async def test_create_and_delete_folders_from_project_burst(
499
set_log_levels_for_noisy_libraries: None,
0 commit comments