fix ServicehandlerImpl Junit warnings
[transportpce.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = py27
4     docs
5     docs-linkcheck
6 skipsdist = true
7 setupdir = tests/
8
9 [testenv]
10 usedevelop = True
11 basepython = python2.7
12 deps =
13   -r{toxinidir}/tests/requirements.txt
14   -r{toxinidir}/tests/test-requirements.txt
15 whitelist_externals = bash
16 changedir={toxinidir}/tests
17 commands =
18   {py27,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221}: - bash -c "if [ ! `which mvn` ]; then ./installMavenCentOS.sh  ; fi"
19   {py27,portmapping,topoPortMapping,rspn,topology,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221}: - bash -c "sed 's@=.*//#FUNCTESTVAL=@=@g' ../olm/src/main/java/org/opendaylight/transportpce/olm/util/OlmUtils.java >/tmp/pivot; mv /tmp/pivot ../olm/src/main/java/org/opendaylight/transportpce/olm/util/OlmUtils.java"
20   {py27,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221}: - bash -c "(cd .. && mvn clean install -s tests/odl_settings.xml -DskipTests -Dmaven.javadoc.skip=true)"
21   {py27,portmapping,topoPortMapping,rspn,topology,olm,end2end}: - ./buildHoneynode.sh
22   {py27,portmapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_portmapping.py
23   {py27,topoPortMapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_topoPortMapping.py
24   {py27,topology}: nosetests --with-xunit transportpce_tests/1.2.1/test_topology.py
25   {py27,rspn}: nosetests --with-xunit transportpce_tests/1.2.1/test_renderer_service_path_nominal.py
26   {py27,pce}: nosetests --with-xunit transportpce_tests/1.2.1/test_pce.py
27   {py27,olm}: nosetests --with-xunit transportpce_tests/1.2.1/test_olm.py
28   #{py27,end2end}: - nosetests --with-xunit transportpce_tests/1.2.1/test_end2end.py
29   {py27,portmapping221,rspn221,topology221,olm221,end2end221}: - ./buildHoneynode.sh 2.2.1
30   {py27,portmapping221}: nosetests --with-xunit transportpce_tests/2.2.1/test_portmapping.py
31   {py27,topology221}: nosetests --with-xunit transportpce_tests/2.2.1/test_topology.py
32   {py27,rspn221}: nosetests --with-xunit transportpce_tests/2.2.1/test_renderer_service_path_nominal.py
33   {py27,olm221}: nosetests --with-xunit transportpce_tests/2.2.1/test_olm.py
34   {py27,end2end221}: - nosetests --with-xunit transportpce_tests/2.2.1/test_end2end.py
35
36
37 [testenv:docs]
38 deps = -rdocs/requirements.txt
39 commands =
40     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
41
42 [testenv:docs-linkcheck]
43 deps = -rdocs/requirements.txt
44 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
45