Skip to content

Commit

Permalink
Add pylint 3.7 support to the Inspection (aws-cloudformation#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
fatbasstard authored and kddejong committed May 15, 2019
1 parent 68c20c7 commit 0c816d6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 10 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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 =
Expand Down Expand Up @@ -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 =
Expand Down

0 comments on commit 0c816d6

Please sign in to comment.