Skip to content

Added some new tests. #1

Added some new tests.

Added some new tests. #1

Workflow file for this run

name: Benchmarks
on:
push:
branches: [main]
pull_request:
branches: [main, "release/*", "dev"]
jobs:
run_tests_ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install packages
run: |
pip install -e .[tests]
- name: Run benchmark
run: |
pytest tests/ --benchmark-json output.json
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: Python Benchmark with pytest-benchmark
tool: "pytest"
output-file-path: examples/pytest/output.json
# Use personal access token instead of GITHUB_TOKEN due to https://github.community/t/github-action-not-triggering-gh-pages-upon-push/16096
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
# Show alert with commit comment on detecting possible performance regression
alert-threshold: "100%"
comment-on-alert: true
fail-on-alert: false