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

[testenv:py26]
usedevelop=True
commands =
    {envpython} tests/test.py
deps = -r{toxinidir}/requirements.txt

[testenv:py27]
usedevelop=True
commands =
    {envpython} tests/test.py
deps = -r{toxinidir}/requirements.txt

[testenv]
usedevelop=True
commands =
    {envpython} tests/test.py
deps = -r{toxinidir}/requirements3.txt

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