Skip to content

try fixing benchmarks #718

try fixing benchmarks

try fixing benchmarks #718

Workflow file for this run

name: Benchmark
on:
pull_request:
branches: [main]
workflow_dispatch:
env:
FORCE_COLOR: "1"
PY_COLORS: "1"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: {}
jobs:
benchmark:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Upgrade nox and uv
run: |
python -m pip install --upgrade 'nox[uv]' pytest-benchmark
uv --version
nox --version
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.sha }}
fetch-depth: 0
- name: Benchmark on base branch
run: nox -s bench -- --benchmark-save=base
- uses: actions/checkout@v4
with:
fetch-depth: 0
clean: false
- name: Benchmark on pull request
working-directory: pr
run: nox -s bench -- --benchmark-save=${GITHUB_SHA::7} --benchmark-compare=0001 --benchmark-compare-fail=mean:10%
- name: Compare benchmark
if: always()
run: pytest-benchmark compare --group-by name