Skip to content

Commit b260ab7

Browse files
committed
Add helper for install dev deps
1 parent 24bca5c commit b260ab7

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
23-
pip install -r requirements-dev.txt --upgrade --upgrade-strategy eager -e .
23+
make install-dev-deps
2424
- name: Run PRCheck
2525
run: make prcheck
2626
testsonly:

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,6 @@ doccheck:
5656
$(MAKE) -C docs html
5757

5858
prcheck: check pylint coverage doccheck typecheck
59+
60+
install-dev-deps:
61+
pip install -r requirements-dev.txt --upgrade --upgrade-strategy eager -e .

0 commit comments

Comments
 (0)