From f1ddfc7aeb95d08fdb8543d7cfc0141e9491a27c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com> Date: Sat, 18 Jul 2015 02:11:35 +0200 Subject: [PATCH] [#52] Test Python 3.x support Should at least be compatible with Python 3.4 now. Can't get Python 3.3 to work locally, but let's see with Travis. --- .travis.yml | 2 ++ tox.ini | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 28eef4e..86361c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,8 @@ language: python python: - "2.6" - "2.7" + - "3.3" + - "3.4" install: - python setup.py install diff --git a/tox.ini b/tox.ini index 9bb857b..17a0f7a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] -envlist = py26,py27 +envlist = py26,py27,py34 [testenv] deps=pytest pytest-pep8 responses -commands=py.test -v --pep8 mwclient tests \ No newline at end of file +commands=py.test -v --pep8 mwclient tests -- GitLab