diff --git a/.gitignore b/.gitignore index e22ca89..2f5bd47 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ dump.rdb /*.egg-info .env +/.tox/ diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..fbf798c --- /dev/null +++ b/tox.ini @@ -0,0 +1,11 @@ +[tox] +envlist=py26,py27,pypy + +[testenv] +commands=py.test +deps=pytest + +[testenv:py26] +deps= + pytest + unittest2