From 5536cce02717cbd3515df0ea1138382375820bd3 Mon Sep 17 00:00:00 2001 From: Arthur Pastel Date: Tue, 15 Oct 2024 16:11:08 +0200 Subject: [PATCH] feat: let the magic happens --- .github/workflows/codspeed.yml | 3 ++- .../{bit_manipulation.py => test_bit_manipulation.py} | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename tests/benchmarks/TheAlgorithms_bench/{bit_manipulation.py => test_bit_manipulation.py} (100%) diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml index 3cddc55..a89a756 100644 --- a/.github/workflows/codspeed.yml +++ b/.github/workflows/codspeed.yml @@ -9,7 +9,7 @@ on: jobs: benchmarks: name: Run benchmarks - runs-on: ubuntu-24.04 + runs-on: codspeed-macro steps: - uses: actions/checkout@v4 with: @@ -23,4 +23,5 @@ jobs: - name: Run benchmarks uses: CodSpeedHQ/action@main with: + runner-version: 3.1.0-beta.2 run: pytest tests/benchmarks/ --codspeed diff --git a/tests/benchmarks/TheAlgorithms_bench/bit_manipulation.py b/tests/benchmarks/TheAlgorithms_bench/test_bit_manipulation.py similarity index 100% rename from tests/benchmarks/TheAlgorithms_bench/bit_manipulation.py rename to tests/benchmarks/TheAlgorithms_bench/test_bit_manipulation.py