We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24bca5c commit b260ab7Copy full SHA for b260ab7
.github/workflows/run-tests.yml
@@ -20,7 +20,7 @@ jobs:
20
python-version: ${{ matrix.python-version }}
21
- name: Install dependencies
22
run: |
23
- pip install -r requirements-dev.txt --upgrade --upgrade-strategy eager -e .
+ make install-dev-deps
24
- name: Run PRCheck
25
run: make prcheck
26
testsonly:
Makefile
@@ -56,3 +56,6 @@ doccheck:
56
$(MAKE) -C docs html
57
58
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