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

[testenv]
usedevelop=True
commands =
    py.test --cov=docker tests/test.py tests/utils_test.py
deps =
    -r{toxinidir}/test-requirements.txt
    -r{toxinidir}/requirements.txt

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