From 9266f7c4571fcd0c32779c222f5b09cdbbbd77e9 Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Tue, 10 Jan 2017 09:26:21 -0500 Subject: [PATCH] Run Tests with python 3.5 Update tox.ini and .travis.yml to support python 3.5 --- .travis.yml | 1 + tox.ini | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 33409c733..02f2bae6e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: python python: - "2.7" - "3.4" + - "3.5" # command to install dependencies install: - "pip install -r requirements.txt" diff --git a/tox.ini b/tox.ini index d99517b76..74c67893c 100644 --- a/tox.ini +++ b/tox.ini @@ -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 \ - [] \ No newline at end of file + []