Skip to content

[pre-commit.ci] pre-commit autoupdate #704

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #704

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]
env:
PYTEST_BENCHMARK_STORAGE: file://${{ github.workspace }}/.benchmarks
steps:
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.sha }}
fetch-depth: 0
path: base
- uses: actions/checkout@v4
with:
fetch-depth: 0
path: pr
- name: Upgrade pip and nox
run: python -m pip install --upgrade pip nox pytest-benchmark
- name: Benchmark on base branch
working-directory: base
run: |
nox -s bench -- --benchmark-save=base
- 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