Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion sdks/python/tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[tox]
# new environments will be excluded by default unless explicitly added to envlist.
envlist = py27,py27gcp,py27cython,lint,docs
envlist = py27,py27gcp,py27cython,py36,lint,docs
toxworkdir = {toxinidir}/target/.tox

[pycodestyle]
Expand Down Expand Up @@ -90,6 +90,15 @@ commands =
python setup.py test
passenv = TRAVIS*

[testenv:py36]
deps =
flake8==3.5.0
commands =
python --version
pip --version
flake8 . --count --exit-zero --select=E901,E999,F821,F822,F823 --show-source --statistics
passenv = TRAVIS*

[testenv:lint]
deps=
nose==1.3.7
Expand Down