1
0
mirror of https://github.com/TheLocehiliosan/yadm synced 2026-03-02 03:49:29 +00:00

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

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'