Skip to content

Commit 586fefc

Browse files
Merge pull request #164 from jleverenz/_tox
Fix & update tox support, see #163
2 parents 9ce1138 + ffc1863 commit 586fefc

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.pyc
22
*.egg-info/
3+
.tox/
34

45
# Eclipse
56
.settings
@@ -8,3 +9,6 @@
89

910
# PyCharm
1011
.idea/
12+
13+
# pytest
14+
.cache/

tox.ini

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
[tox]
2-
envlist=py26,py27,py32,py33,pypy
2+
envlist=py26,py27,py33,py34,py35,py36,py37,pypy
33

44
[testenv]
5+
deps = -rrequirements.txt
6+
passenv = HOME USERPROFILE
57
commands=
68
python all_tests.py
79
py.test pytest_plugin_test.py
810

911
[testenv:py26]
10-
deps=unittest2
12+
deps=
13+
-rrequirements.txt
14+
unittest2

0 commit comments

Comments
 (0)