Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ba474c9

Browse files
committed
Add a tox.ini for tox (http://tox.testrun.org/) to make it easier to
test in clean environments and across multiple versions of python.
1 parent fa5a697 commit ba474c9

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
build/
44
dist/
55
*.egg
6-
*.egg-info
6+
*.egg-info
7+
.tox

tox.ini

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[tox]
2+
envlist = py26,py27,py31,py32
3+
4+
[testenv]
5+
deps=nose
6+
commands=nosetests

0 commit comments

Comments
 (0)