Skip to content

Commit d798a7e

Browse files
committed
split out mypy
1 parent f43fa45 commit d798a7e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,10 @@ mypy: ${PYSOURCES}
176176
jenkins:
177177
if ! test -d env ; then virtualenv env ; fi
178178
. env/bin/activate ; \
179-
${MAKE} install-dep coverage.html coverage.xml mypy pep257_report.txt \
179+
${MAKE} install-dep coverage.html coverage.xml pep257_report.txt \
180180
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
181184

182185
FORCE:

0 commit comments

Comments
 (0)