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

[testenv]
usedevelop=True
commands =
    {envbindir}/coverage run -p tests/test.py
    {envbindir}/coverage run -p tests/utils_test.py
    {envbindir}/coverage combine
    {envbindir}/coverage report
    {envbindir}/coverage html
deps =
    -r{toxinidir}/test-requirements.txt
    -r{toxinidir}/requirements.txt

[testenv:flake8]
commands = flake8 docker tests
deps = flake8