Merge "Add onap log spec 1.2 for osdf"
[optf/osdf.git] / tox.ini
1
2 [tox]
3 skipsdist=True
4 envlist = py3, pylint
5
6 [testenv]
7 distribute = False
8 setenv   =
9     OSDF_CONFIG_FILE={toxinidir}/test/config/osdf_config.yaml
10 commands =
11     - cat /etc/hosts
12     /bin/bash test/functest/scripts/start-simulators.sh
13     coverage run --module pytest --junitxml xunit-results.xml
14     coverage xml --omit=".tox/py3/*","test/*"
15     coverage report -m --omit=".tox/py3/*","test/*"
16     /bin/bash test/functest/scripts/stop-simulators.sh
17     # TODO: need to update the above "omit" when we package osdf as pip-installable
18 deps = -r{toxinidir}/requirements.txt
19     -r{toxinidir}/test/test-requirements.txt
20
21 [run]
22 source=./osdf/,osdfapp.py
23
24 [testenv:pylint]
25 whitelist_externals=bash
26 commands = bash -c "pylint --reports=y osdf | tee pylint.out"
27
28 [testenv:py3]
29 basepython=python3.6