Skip to content

Commit

Permalink
travis: remove python 3.3, add 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
brutasse committed Oct 18, 2017
1 parent 1c06958 commit 65fdef1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
language: python
python: 3.5
python: 3.6
sudo: false
cache: pip

env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=py36
- TOXENV=pypy
- TOXENV=pyparsing1
- TOXENV=flask08
Expand Down
17 changes: 9 additions & 8 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
envlist =
py26,
py27,
py33,
py34,
py35,
py36,
pypy,
pyparsing1,
flask08,
Expand Down Expand Up @@ -53,28 +53,29 @@ deps =
mock
scandir

[testenv:py33]
basepython = python3.3
[testenv:py34]
basepython = python3.4
commands =
python -Wall -m unittest discover
deps =
{[testenv]deps}
Flask
Flask-Cache
pyparsing
scandir

[testenv:py34]
basepython = python3.4
[testenv:py35]
basepython = python3.5
commands =
python -Wall -m unittest discover
deps =
{[testenv]deps}
Flask
Flask-Cache
pyparsing
scandir

[testenv:py35]
basepython = python3.5
[testenv:py36]
basepython = python3.6
commands =
python -Wall -m unittest discover
deps =
Expand Down

0 comments on commit 65fdef1

Please sign in to comment.