Skip to content

Commit 03567c2

Browse files
committed
Add tox.ini for easy multiple python version testing
1 parent b9939a7 commit 03567c2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tox.ini

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Tox (http://tox.testrun.org/) is a tool for running tests
2+
# in multiple virtualenvs. This configuration file will run the
3+
# test suite on all supported python versions. To use it, "pip install tox"
4+
# and then run "tox" from this directory.
5+
6+
[tox]
7+
envlist = py26, py27
8+
9+
[testenv]
10+
deps = nose
11+
commands = pip install -r requirements.txt --use-mirrors
12+
nosetests
13+

0 commit comments

Comments
 (0)