Skip to content

Commit e20b631

Browse files
committed
Add support for tox
1 parent c8b2744 commit e20b631

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
*.zip
88
*.egg
99
*.egg-info/
10+
.tox/
1011
build/
1112
dist/

Diff for: tox.ini

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[tox]
2+
envlist = py25, py26, py27, py33
3+
4+
[testenv]
5+
setenv =
6+
TESTDB=travis.cnf
7+
commands =
8+
nosetests {posargs:-w tests -v}
9+
deps =
10+
nose

0 commit comments

Comments
 (0)