JDK 11 controller support in tox job
[transportpce.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = py3
4     docs
5     docs-linkcheck
6 skipsdist = true
7 setupdir = tests/
8
9 [testenv]
10 passenv = USE_LIGHTY
11 usedevelop = True
12 basepython = python3
13 deps =
14   -r{toxinidir}/tests/requirements.txt
15   -r{toxinidir}/tests/test-requirements.txt
16 whitelist_externals = bash
17                       sudo
18 changedir={toxinidir}/tests
19 commands =
20   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,otntopology,olm221,end2end221,gnpy}: - bash -c "if [ ! `which mvn` ]; then ./installMavenCentOS.sh  ; fi"
21   {py3,portmapping,topoPortMapping,rspn,topology,olm,end2end}: - ./buildHoneynode.sh
22   {py3,portmapping221,rspn221,topology221,otntopology,olm221,end2end221}: - ./buildHoneynode.sh 2.2.1
23   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,otntopology,olm221,end2end221,gnpy}: - bash -c "if [ -f FLAG_TPCE_RELENG ]; then ./installJDK11CentOS.sh  ; fi"
24   {py3,portmapping,topoPortMapping,rspn,topology,olm,end2end,portmapping221,rspn221,topology221,otn-topology,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"
25   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,otntopology,olm221,end2end221,gnpy}: - bash -c "cd .. && mvn clean install -s tests/odl_settings.xml -DskipTests -Dmaven.javadoc.skip=true"
26   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,otntopology,olm221,end2end221,gnpy}: - bash -c 'if [ "$USE_LIGHTY" == "True" ]; then (cd ../lighty && ./build.sh); fi'
27   {py3,portmapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_portmapping.py
28   {py3,topoPortMapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_topoPortMapping.py
29   {py3,topology}: nosetests --with-xunit transportpce_tests/1.2.1/test_topology.py
30   {py3,rspn}: nosetests --with-xunit transportpce_tests/1.2.1/test_renderer_service_path_nominal.py
31   {py3,pce}: nosetests --with-xunit transportpce_tests/1.2.1/test_pce.py
32   {py3,olm}: nosetests --with-xunit transportpce_tests/1.2.1/test_olm.py
33   {end2end}: nosetests --with-xunit transportpce_tests/1.2.1/test_end2end.py
34   {py3,portmapping221}: nosetests --with-xunit transportpce_tests/2.2.1/test_portmapping.py
35   {py3,topology221}: nosetests --with-xunit transportpce_tests/2.2.1/test_topology.py
36   {otntopology}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_topology.py
37   {py3,rspn221}: nosetests --with-xunit transportpce_tests/2.2.1/test_renderer_service_path_nominal.py
38   {py3,olm221}: nosetests --with-xunit transportpce_tests/2.2.1/test_olm.py
39   {end2end221}: nosetests --with-xunit transportpce_tests/2.2.1/test_end2end.py
40   #{gnpy}: - sudo docker pull atriki/gnpyrest:v1.1
41   {gnpy}: - sudo docker run -d -p 8008:5000 --name gnpy_tpce_rest1 atriki/gnpyrest:v1.1
42   {gnpy}: nosetests --with-xunit transportpce_tests/1.2.1/test_gnpy.py
43   {gnpy}: - sudo docker container rm -f gnpy_tpce_rest1
44
45 [testenv:docs]
46 deps = -rdocs/requirements.txt
47 commands =
48     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
49
50 [testenv:docs-linkcheck]
51 deps = -rdocs/requirements.txt
52 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
53