summaryrefslogtreecommitdiffstats
path: root/tox.ini
blob: 9b94ee727e02c49e28bbfae2cf37ff4476702923 (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
[tox]
minversion = 2.5
skipsdist = True
envlist = pep8,py27

[testenv]
basepython=python2
usedevelop = True
install_command = pip install -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
       -r{toxinidir}/test-requirements.txt
commands =
  py.test --basetemp={envtmpdir} --ignore=cvp {posargs}
setenv =
  VIRTUAL_ENV={envdir}
  HOME = {envtmpdir}
  PYTHONPATH = {toxinidir}
whitelist_externals = wget
                      touch
                      echo

[testenv:pep8]
deps = flake8
commands = flake8 {toxinidir}

[testenv:py27-cover]
commands = python setup.py testr --coverage \
    --omit='{toxinidir}/dovetail/tests*' \
    --testr-args='{posargs}'

[flake8]
show-source = True
ignore = E123,E125,H803,E722
exclude = .tox,dist,docs,*egg,build,.venv,.git

[testenv:docs]
commands =
    touch ./docs/index.rst
    - wget -q -nc https://raw.githubusercontent.com/opnfv/opnfvdocs/master/etc/requirements.txt -O ./docs/requirements.txt
    pip install -r ./docs/requirements.txt
    pip install sphinx_opnfv_theme
    sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
    echo "Generated docs available in {toxinidir}/docs/_build/html"