Add yamllint to testenv
Also organize pip install command so software can be added/removed easier.
This commit is contained in:
parent
826f9bc09e
commit
282b772ce5
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -136,7 +136,12 @@ testenv:
|
||||||
@echo
|
@echo
|
||||||
virtualenv --python=python3 testenv
|
virtualenv --python=python3 testenv
|
||||||
testenv/bin/pip3 install --upgrade pip setuptools
|
testenv/bin/pip3 install --upgrade pip setuptools
|
||||||
testenv/bin/pip3 install --upgrade pytest pylint==1.9.2 flake8==3.5.0
|
testenv/bin/pip3 install --upgrade \
|
||||||
|
flake8==3.5.0 \
|
||||||
|
pylint==1.9.2 \
|
||||||
|
pytest \
|
||||||
|
yamllint==1.15.0 \
|
||||||
|
;
|
||||||
@echo
|
@echo
|
||||||
@echo 'To activate this test environment type:'
|
@echo 'To activate this test environment type:'
|
||||||
@echo ' source testenv/bin/activate'
|
@echo ' source testenv/bin/activate'
|
||||||
|
|
Loading…
Reference in a new issue