add benchmarks to master (#1263)

This commit is contained in:
collerek
2024-02-08 10:57:18 +01:00
committed by GitHub
parent 11c1e5c183
commit 3643239ac2
3 changed files with 203 additions and 33 deletions

39
.github/workflows/benchmark.yml vendored Normal file
View File

@ -0,0 +1,39 @@
name: codspeed-benchmarks
on:
push:
branches: [ master, pydantic_v2 ]
pull_request:
branches: [ master, pydantic_v2 ]
# `workflow_dispatch` allows CodSpeed to trigger backtest
# performance analysis in order to generate initial data.
workflow_dispatch:
jobs:
benchmarks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install Poetry
uses: snok/install-poetry@v1.3.3
with:
version: 1.4.2
virtualenvs-create: false
- name: Poetry details
run: |
poetry --version
poetry config --list
- name: Install dependencies
run: poetry install --extras "all"
- name: Run benchmarks
uses: CodSpeedHQ/action@v2
with:
token: ${{ secrets.CODSPEED_TOKEN }}
run: poetry run pytest benchmarks/ --codspeed

196
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -141,6 +141,7 @@ all = [
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
httpx = "^0.24.1" httpx = "^0.24.1"
asgi-lifespan = "^2.1.0" asgi-lifespan = "^2.1.0"
pytest-codspeed = "^2.2.0"
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]