Add yamllint to testenv

Also organize pip install command so software can be added/removed
easier.
This commit is contained in:
Tim Byrne 2019-03-22 07:39:09 -05:00
parent 826f9bc09e
commit 282b772ce5
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12
1 changed files with 6 additions and 1 deletions

View File

@ -136,7 +136,12 @@ testenv:
@echo
virtualenv --python=python3 testenv
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 'To activate this test environment type:'
@echo ' source testenv/bin/activate'