Browse Source

Added python 3.5 to the tox build

pull/5/merge
Miguel Grinberg 10 years ago
parent
commit
3cb904cfd8
  1. 1
      .travis.yml
  2. 7
      tox.ini

1
.travis.yml

@ -4,6 +4,7 @@ env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=docs
install:

7
tox.ini

@ -1,5 +1,5 @@
[tox]
envlist=flake8,py27,py33,py34,pypy,docs,coverage
envlist=flake8,py27,py33,py34,py35,pypy,docs,coverage
skip_missing_interpreters=True
[testenv]
@ -31,6 +31,11 @@ basepython=python3.4
deps=
coverage
[testenv:py35]
basepython=python3.5
deps=
coverage
[testenv:pypy]
basepython=pypy
deps=

Loading…
Cancel
Save