Skip to content

Commit

Permalink
sort out benchmarking on 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
meadsteve committed Mar 6, 2023
1 parent 1d15588 commit 6f34943
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand All @@ -20,10 +20,12 @@ jobs:
run: |
make setup
- name: Run Bechmarking
id: run_benchmark
run: |
make benchmark
- uses: actions/upload-artifact@v2
name: Save Benchmarks
if: success() || steps.run_benchmark.conclusion == 'failure'
with:
name: benchmark-results
path: .benchmarks/
8 changes: 0 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,6 @@ jobs:
- name: Run Tests
run: |
pipenv run pytest tests -m "not benchmarking" -vv
- name: Run Bechmarking
run: |
make benchmark
- uses: actions/upload-artifact@v2
name: Save Benchmarks
with:
name: benchmark-compiled-results
path: .benchmarks/
test-non-compiled-build:
name: build-non-compiled-test-${{ matrix.python-version }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6f34943

Please sign in to comment.