Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov pytest-benchmark mypy ruff
# This repo has no requirements.txt; its dependencies live in
# pyproject.toml. Installing the project and its `dev` extra is also
# what makes the version floors declared there actually apply.
pip install -e ".[dev]"
# Used by the benchmark step below; not part of the `dev` extra.
pip install pytest-benchmark

- name: Lint (ruff)
run: ruff check . --select=E,F,W --ignore=E501
Expand Down
Loading