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

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