From 6ad92f53ba317a712a26df82391798c5dc67b6ed Mon Sep 17 00:00:00 2001 From: Kess Plasmeier Date: Fri, 8 May 2026 13:15:12 -0700 Subject: [PATCH 1/2] chore: reduce perf rounds --- test/performance/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/performance/conftest.py b/test/performance/conftest.py index 2e686a30..82ccec74 100644 --- a/test/performance/conftest.py +++ b/test/performance/conftest.py @@ -17,7 +17,7 @@ ) # Performance test configuration -NUM_ROUNDS = int(os.environ.get("PERF_NUM_ROUNDS", "30")) +NUM_ROUNDS = int(os.environ.get("PERF_NUM_ROUNDS", "10")) OBJECT_SIZES_MB = [10, 25, 50] From 1a4041a5581015141bc620c7d13cb36aac6a436b Mon Sep 17 00:00:00 2001 From: Kess Plasmeier Date: Fri, 8 May 2026 14:27:38 -0700 Subject: [PATCH 2/2] fix --- .github/workflows/python-perf.yml | 2 +- test/performance/conftest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-perf.yml b/.github/workflows/python-perf.yml index c5a4ab41..8b4bed00 100644 --- a/.github/workflows/python-perf.yml +++ b/.github/workflows/python-perf.yml @@ -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() diff --git a/test/performance/conftest.py b/test/performance/conftest.py index 82ccec74..aaf9c934 100644 --- a/test/performance/conftest.py +++ b/test/performance/conftest.py @@ -18,7 +18,7 @@ # Performance test configuration NUM_ROUNDS = int(os.environ.get("PERF_NUM_ROUNDS", "10")) -OBJECT_SIZES_MB = [10, 25, 50] +OBJECT_SIZES_MB = [10, 50] def _make_s3ec(algorithm_suite, commitment_policy):