File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010* .pyc
1111venv /
1212.idea
13- .env
13+ .env
14+ .python-version
15+ .tox /
Original file line number Diff line number Diff line change 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, py32
8+
9+ [testenv]
10+ commands = {envbindir}/python -m unittest discover []
11+ deps =
12+
13+ [testenv:py26]
14+ commands = {envbindir}/unit2 discover []
15+ deps = unittest2
16+ basepython = python2.6
17+
18+ [testenv:py27]
19+ commands = {envbindir}/python -m unittest discover []
20+ deps =
21+ basepython = python2.7
22+
23+ [testenv:py32]
24+ commands = {envbindir}/python -m unittest discover []
25+ deps =
26+ basepython = python3.2
You can’t perform that action at this time.
0 commit comments