Run Tests with python 3.5

Update tox.ini and .travis.yml to support python 3.5
This commit is contained in:
Davanum Srinivas 2017-01-10 09:26:21 -05:00
parent d7f33ec53e
commit 9266f7c457
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@ language: python
python:
- "2.7"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install -r requirements.txt"

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27, py34
envlist = py27, py34, py35
[testenv]
deps=-r{toxinidir}/requirements.txt
@ -7,4 +7,4 @@ deps=-r{toxinidir}/requirements.txt
commands=
nosetests \
[]
[]