From 282b772ce5220380be9df2901316fe0bed9d31d0 Mon Sep 17 00:00:00 2001 From: Tim Byrne Date: Fri, 22 Mar 2019 07:39:09 -0500 Subject: [PATCH] Add yamllint to testenv Also organize pip install command so software can be added/removed easier. --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b65dee0..1242bfd 100644 --- a/Makefile +++ b/Makefile @@ -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'