From bdb0c55d9bfab683e470f565f0587d52b3179bef Mon Sep 17 00:00:00 2001 From: Sandro Campos Date: Fri, 28 Jul 2023 11:18:51 -0400 Subject: [PATCH] Fix error in asv config filename --- .github/workflows/asv.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/asv.yml b/.github/workflows/asv.yml index 2f8c7f2..2893032 100644 --- a/.github/workflows/asv.yml +++ b/.github/workflows/asv.yml @@ -8,7 +8,7 @@ on: branches: [ main ] env: - ASV_CONFIG: benchmarks/asv.config.json + ASV_CONFIG: benchmarks/asv.conf.json jobs: install-python: @@ -37,12 +37,7 @@ jobs: pip install . pip install .[dev] if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - - name: Change to benchmarks directory - run: cd benchmarks/ - name: Run benchmarks with asv - run: | - pwd - ls - asv run --config $ASV_CONFIG -v + run: asv run --config $ASV_CONFIG -v - name: Publish results to GH-pages run: asv gh-pages --config $ASV_CONFIG -v