Merge pull request #205 from reaperhulk/simplify-tests
Simplify some test class structure
diff --git a/.travis.yml b/.travis.yml
index 9710537..cf6ecef 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,6 +13,7 @@
- TOX_ENV=pypy CC=clang
- TOX_ENV=docs
- TOX_ENV=pep8
+ - TOX_ENV=py3pep8
install:
- "[[ ${TOX_ENV} == pypy ]] && sudo add-apt-repository -y ppa:pypy/ppa || true"
diff --git a/tox.ini b/tox.ini
index 92bcb75..b01aeb7 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py26,py27,pypy,py32,py33,docs,pep8
+envlist = py26,py27,pypy,py32,py33,docs,pep8,py3pep8
[testenv]
deps =
@@ -22,5 +22,10 @@
deps = flake8
commands = flake8 .
+[testenv:py3pep8]
+basepython = python3.3
+deps = flake8
+commands = flake8 .
+
[flake8]
exclude = .tox,*.egg