Skip to content

Commit

Permalink
Tweak tox config
Browse files Browse the repository at this point in the history
Only need to run flake8 on one python version.
  • Loading branch information
clenk committed Jul 7, 2020
1 parent bbfa903 commit eb7e178
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py35,py36,py37,py38,pycodestyle,isort-check,packaging
envlist = py35,py36,py37,py38,style,isort-check,packaging

[testenv]
deps =
Expand All @@ -16,13 +16,13 @@ commands =

passenv = CI TRAVIS TRAVIS_*

[testenv:pycodestyle]
[testenv:style]
deps =
flake8
commands =
flake8

[pycodestyle]
[style]
max-line-length=160

[flake8]
Expand All @@ -42,7 +42,7 @@ commands =

[travis]
python =
3.5: py35, pycodestyle
3.6: py36, pycodestyle, isort-check, packaging
3.7: py37, pycodestyle
3.8: py38, pycodestyle
3.5: py35
3.6: py36
3.7: py37
3.8: py38, style, isort-check, packaging

0 comments on commit eb7e178

Please sign in to comment.