summaryrefslogtreecommitdiff
path: root/tox.ini
blob: dc4d1424d52c1473e0c24ef92926e4c5fda2f213 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tox]
envlist = py26,py27,pep8,hacking

[testenv]
deps = -r{toxinidir}/tools/test-requires
       -r{toxinidir}/tools/pip-requires
setenv = VIRTUAL_ENV={envdir}
         NOSE_WITH_OPENSTACK=1
         NOSE_OPENSTACK_COLOR=1
         NOSE_OPENSTACK_RED=0.05
         NOSE_OPENSTACK_YELLOW=0.025
         NOSE_OPENSTACK_SHOW_ELAPSED=1
commands =
    nosetests --no-path-adjustment --where=../nova_tests
    nosetests --no-path-adjustment {posargs}
sitepackages = False

[testenv:cover]
commands = nosetests --no-path-adjustment --with-coverage --cover-erase --cover-package=ceilometer --cover-inclusive []

[testenv:pep8]
deps = pep8==1.3.3
commands =
    pep8 --repeat --ignore=E125 --exclude=ceilometer/openstack/common/db/sqlalchemy/session.py --show-source ceilometer setup.py bin/ceilometer-agent-central bin/ceilometer-agent-compute bin/ceilometer-collector bin/ceilometer-api tests

[testenv:hacking]
deps = pep8==1.3.3
commands =
    python tools/hacking.py --ignore=E12,E711,E721,E712,N403,N404 --show-source \
        --exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg .
    python tools/hacking.py --ignore=E12,E711,E721,E712,N403,N404 --show-source \
        --filename=ceilometer* bin

[testenv:docs]
deps = -r{toxinidir}/tools/test-requires
       -r{toxinidir}/tools/pip-requires
       sphinxcontrib-httpdomain
commands = python setup.py build_sphinx

[testenv:venv]
deps = -r{toxinidir}/tools/test-requires
       -r{toxinidir}/tools/pip-requires
       sphinxcontrib-httpdomain
commands = {posargs}

[testenv:pyflakes]
deps = -r{toxinidir}/tools/test-requires
       -r{toxinidir}/tools/pip-requires
       pyflakes
commands = python tools/flakes.py ceilometer