summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 2d6f1c33ffbb2ef4fd4badc5a4fe5ea09e055319 (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
28
29
30
31
[tox]
envlist = {py26,py27}

[testenv]
commands = make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = make

[testenv:py26]
commands =
    python -m compileall -fq -x 'test|samples|contrib/inventory/vagrant.py' .
    #python2.4 -m compileall -fq -x 'module_utils/(a10|rax|openstack|ec2|gce).py' lib/ansible/module_utils
    make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals =
    make
    #python2.4

[testenv:py27]
commands =
    python -m compileall -fq -x 'test|samples' .
    make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = make

[testenv:py34]
commands =
    python -m compileall -fq -x 'lib/ansible/module_utils' lib
    make tests
deps = -r{toxinidir}/test-requirements.txt
whitelist_externals = make