Skip to content
Merged
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 .github/workflows/python-perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
env:
CI_S3_BUCKET: ${{ vars.CI_S3_BUCKET }}
CI_KMS_KEY_ALIAS: ${{ vars.CI_KMS_KEY_ALIAS }}
PERF_NUM_ROUNDS: "30"
PERF_NUM_ROUNDS: "10"

- name: Generate performance HTML report
if: always()
Expand Down
4 changes: 2 additions & 2 deletions test/performance/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
)

# Performance test configuration
NUM_ROUNDS = int(os.environ.get("PERF_NUM_ROUNDS", "30"))
OBJECT_SIZES_MB = [10, 25, 50]
NUM_ROUNDS = int(os.environ.get("PERF_NUM_ROUNDS", "10"))
OBJECT_SIZES_MB = [10, 50]


def _make_s3ec(algorithm_suite, commitment_policy):
Expand Down
Loading