summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 2b66655fe098633838601e7240f343b6d1f6dd55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tox]
downloadcache = {toxworkdir}/cache/
envlist =
    py26,
    py27,
    py34,
    py35,

[testenv]
basepython =
    py26: python2.6
    py27: python2.7
    py34: python3.4
    py35: python3.5
commands =
    py.test
deps =
    pytest
    mock
    setuptools>=17.1