Skip to content

Commit e3daaf1

Browse files
committed
Added install of pytest to linting step to satisfy mypy
1 parent 2f9bcc3 commit e3daaf1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip
32-
python -m pip install .[lint]
32+
python -m pip install .[lint] pytest
33+
# Also install pytest here, otherwise mypy will complain about our test files
3334

3435
- name: Lint with Ruff
3536
run: ruff check . --output-format github

0 commit comments

Comments
 (0)