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

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tox.ini

+13
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)