Add tox tests, for Python 2.6 and PyPy.

This commit is contained in:
Vincent Driessen 2013-01-23 22:57:44 +01:00
parent 06b48c2026
commit 73e6017896
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@
dump.rdb dump.rdb
/*.egg-info /*.egg-info
.env .env
/.tox/

11
tox.ini Normal file
View File

@ -0,0 +1,11 @@
[tox]
envlist=py26,py27,pypy
[testenv]
commands=py.test
deps=pytest
[testenv:py26]
deps=
pytest
unittest2