diff options
author | Lance Stout <lancestout@gmail.com> | 2011-08-31 00:00:12 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-08-31 00:00:12 -0700 |
commit | c3df4dd0520a758837e8d9c51d408efc4d8e6a28 (patch) | |
tree | 87f53987c1092dc4b767aa67d1c5c8c7e0db99be /tox.ini | |
parent | 730c3fada0ddc09a0814fe6bed583c1f3acbbf3f (diff) | |
download | slixmpp-c3df4dd0520a758837e8d9c51d408efc4d8e6a28.tar.gz slixmpp-c3df4dd0520a758837e8d9c51d408efc4d8e6a28.tar.bz2 slixmpp-c3df4dd0520a758837e8d9c51d408efc4d8e6a28.tar.xz slixmpp-c3df4dd0520a758837e8d9c51d408efc4d8e6a28.zip |
Create a tox config for automating tests for different Python versions.
To use:
sudo pip install tox
tox
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..8576f4eb --- /dev/null +++ b/tox.ini @@ -0,0 +1,5 @@ +[tox] +envlist = py26,py27,py31,py32 +[testenv] +deps = nose +commands = nosetests --where=tests --exclude=live -i sleektest.py |