]> git.phdru.name Git - mimedecode.git/blob - tox.ini
Cleanup: Fix flake8 E302 expected 2 blank lines, found 1
[mimedecode.git] / tox.ini
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 = py27, py33, py34, py35, py36, pypy
8 skip_missing_interpreters=true
9 toxworkdir={homedir}/.tox/mimedecode
10
11 [testenv]
12 basepython =
13     py27: {env:TOXPYTHON:python2.7}
14     py33: {env:TOXPYTHON:python3.3}
15     py34: {env:TOXPYTHON:python3.4}
16     py35: {env:TOXPYTHON:python3.5}
17     py36: {env:TOXPYTHON:python3.6}
18     pypy: {env:TOXPYTHON:pypy}
19 deps =
20     -rdevscripts/requirements/requirements_tests.txt
21 changedir = test
22 commands =
23     {envpython} --version
24     {envpython} -c "import struct; print(struct.calcsize('P') * 8)"
25     ./test_all
26 #whitelist_externals =