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 f43fa45 commit d798a7eCopy full SHA for d798a7e
Makefile
@@ -176,7 +176,10 @@ mypy: ${PYSOURCES}
176
jenkins:
177
if ! test -d env ; then virtualenv env ; fi
178
. env/bin/activate ; \
179
- ${MAKE} install-dep coverage.html coverage.xml mypy pep257_report.txt \
+ ${MAKE} install-dep coverage.html coverage.xml pep257_report.txt \
180
sloccount.sc pep8_report.txt pylint_report.txt
181
+ if ! test -d env3 ; then virtualenv -p python3 env3 ; fi
182
+ . env3/bin/activate ; \
183
+ pip install mypy-lang; ${MAKE} mypy
184
185
FORCE:
0 commit comments