summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 2a0db4368cb8aad890415a3856ae98c987e58e91 (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
26
27
[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
    -r{toxinidir}/test-requirements.txt

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