diff --git a/.travis.yml b/.travis.yml index dbf38a7d6b..f3973bb2d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,8 @@ stages: jobs: include: - stage: Linting - python: 3.6 - env: TOXENV=pylint36 + python: 3.7 + env: TOXENV=pylint37 - python: 2.7 env: TOXENV=pylint27 - stage: Unit Tests diff --git a/tox.ini b/tox.ini index d8b7635622..9acc340b08 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{27,34,35,36,37},pylint{36,27} +envlist = py{27,34,35,36,37},pylint{37,36,27} [testenv] commands = @@ -28,6 +28,15 @@ commands = coverage report codecov +[testenv:pylint37] +basepython = python3.7 +deps = + pylint_quotes + pylint +commands = + pip install -e . + pylint --load-plugins pylint_quotes src/cfnlint + [testenv:pylint36] basepython = python3.6 deps =