Skip to content

Commit 23b79ea

Browse files
committed
Add back tox.ini for tox
This time with support for measuring coverage. Ability to test quickly across multiple Python versions is crucial for working on Python 3 compatibility...
1 parent 707885b commit 23b79ea

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

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, py33, py34
8+
9+
[testenv]
10+
commands = nosetests {posargs:--with-coverage --cover-package=smmap}
11+
deps =
12+
nose
13+
nosexcover

0 commit comments

Comments
 (0)