summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 3a2d5949a0614333bd6d282eeaab4650c7be31d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tox]
envlist = py26,py27,py32,py33,py34,pypy,pypy3,flake,cover

[testenv]
deps =
commands =
    {envpython} setup.py test

[testenv:flake]
basepython = python2.7
commands=
    pip install --quiet flake8
    {envpython} setup.py clean --all flake8

[testenv:cover]
basepython = python2.7
commands =
    pip install --quiet coverage
    {envpython} setup.py clean --all
    coverage run setup.py test