blob: 1a41c6edacbc3144f6d3ffb43d41495d8f86d0df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
[tox]
envlist = py27, py33, py34, py35, flake8
skipsdist=True
[testenv]
usedevelop=True
commands =
py.test --cov=docker {posargs:tests/unit}
deps =
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
[testenv:flake8]
commands = flake8 docker tests setup.py
deps = flake8
|