Skip to content

Commit

Permalink
Add flake8 and py35 tox targets
Browse files Browse the repository at this point in the history
  • Loading branch information
msabramo committed Aug 4, 2016
1 parent ac4a8ef commit 6eefb08
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=flake8
install:
- travis_retry pip install tox
script:
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py26, py27, pypy, py33, py34, pypy3
envlist = py26, py27, pypy, py33, py34, py35, pypy3, flake8

[testenv]
deps =
Expand All @@ -16,3 +16,8 @@ passenv =
TEAMCITY_USER
TEAMCITY_PASSWORD
commands = py.test {posargs:-v --cov=pyteamcity --cov-report=term-missing test_pyteamcity.py pyteamcity/future/tests/unit/}

[testenv:flake8]
deps =
flake8
commands = flake8 {posargs:pyteamcity/future}

0 comments on commit 6eefb08

Please sign in to comment.