Bump lighty.io core and add tests support for it
[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 passenv = USE_LIGHTY
11 usedevelop = True
12 basepython = python2.7
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   {py27,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221,gnpy}: - bash -c "if [ ! `which mvn` ]; then ./installMavenCentOS.sh  ; fi"
21   {py27,portmapping,topoPortMapping,rspn,topology,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221,gnpy}: - 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"
22   {py27,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221,gnpy}: - bash -c "(cd .. && mvn clean install -s tests/odl_settings.xml -DskipTests -Dmaven.javadoc.skip=true)"
23   {py27,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221,gnpy}: - bash -c 'if [ "$USE_LIGHTY" == "True" ]; then (cd ../lighty && ./build.sh); fi'
24   {py27,portmapping,topoPortMapping,rspn,topology,olm,end2end}: - ./buildHoneynode.sh
25   {py27,portmapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_portmapping.py
26   {py27,topoPortMapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_topoPortMapping.py
27   {py27,topology}: nosetests --with-xunit transportpce_tests/1.2.1/test_topology.py
28   {py27,rspn}: nosetests --with-xunit transportpce_tests/1.2.1/test_renderer_service_path_nominal.py
29   {py27,pce}: nosetests --with-xunit transportpce_tests/1.2.1/test_pce.py
30   {py27,olm}: nosetests --with-xunit transportpce_tests/1.2.1/test_olm.py
31   {end2end}: nosetests --with-xunit transportpce_tests/1.2.1/test_end2end.py
32   {py27,portmapping221,rspn221,topology221,olm221,end2end221}: - ./buildHoneynode.sh 2.2.1
33   {py27,portmapping221}: nosetests --with-xunit transportpce_tests/2.2.1/test_portmapping.py
34   {py27,topology221}: nosetests --with-xunit transportpce_tests/2.2.1/test_topology.py
35   {py27,rspn221}: nosetests --with-xunit transportpce_tests/2.2.1/test_renderer_service_path_nominal.py
36   {py27,olm221}: nosetests --with-xunit transportpce_tests/2.2.1/test_olm.py
37   {end2end221}: nosetests --with-xunit transportpce_tests/2.2.1/test_end2end.py
38   #{gnpy}: - sudo docker pull atriki/gnpyrest:v1.1
39   {gnpy}: - sudo docker run -d -p 8008:5000 --name gnpy_tpce_rest1 atriki/gnpyrest:v1.1
40   {gnpy}: nosetests --with-xunit transportpce_tests/1.2.1/test_gnpy.py
41   #{gnpy}: - sudo docker container rm -f gnpy_tpce_rest1
42
43
44 [testenv:docs]
45 deps = -rdocs/requirements.txt
46 commands =
47     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
48
49 #[testenv:docs-linkcheck]
50 #deps = -rdocs/requirements.txt
51 #commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
52