Merge changes from topic "sodium"
[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                       sudo
17 changedir={toxinidir}/tests
18 commands =
19   {py27,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,topology221,olm221,end2end221,gnpy}: - bash -c "if [ ! `which mvn` ]; then ./installMavenCentOS.sh  ; fi"
20   {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"
21   {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)"
22   {py27,portmapping,topoPortMapping,rspn,topology,olm,end2end}: - ./buildHoneynode.sh
23   {py27,portmapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_portmapping.py
24   {py27,topoPortMapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_topoPortMapping.py
25   {py27,topology}: nosetests --with-xunit transportpce_tests/1.2.1/test_topology.py
26   {py27,rspn}: nosetests --with-xunit transportpce_tests/1.2.1/test_renderer_service_path_nominal.py
27   {py27,pce}: nosetests --with-xunit transportpce_tests/1.2.1/test_pce.py
28   {py27,olm}: nosetests --with-xunit transportpce_tests/1.2.1/test_olm.py
29   {end2end}: - nosetests --with-xunit transportpce_tests/1.2.1/test_end2end.py
30   {py27,portmapping221,rspn221,topology221,olm221,end2end221}: - ./buildHoneynode.sh 2.2.1
31   {py27,portmapping221}: nosetests --with-xunit transportpce_tests/2.2.1/test_portmapping.py
32   {py27,topology221}: nosetests --with-xunit transportpce_tests/2.2.1/test_topology.py
33   {py27,rspn221}: nosetests --with-xunit transportpce_tests/2.2.1/test_renderer_service_path_nominal.py
34   {py27,olm221}: nosetests --with-xunit transportpce_tests/2.2.1/test_olm.py
35   {end2end221}: - nosetests --with-xunit transportpce_tests/2.2.1/test_end2end.py
36   #{gnpy}: - sudo docker pull atriki/gnpyrest:v1.1
37   {gnpy}: - sudo docker run -d -p 8008:5000 --name gnpy_tpce_rest1 atriki/gnpyrest:v1.1
38   {gnpy}: nosetests --with-xunit transportpce_tests/1.2.1/test_gnpy.py
39   #{gnpy}: - sudo docker container rm -f gnpy_tpce_rest1
40
41
42 [testenv:docs]
43 deps = -rdocs/requirements.txt
44 commands =
45     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
46
47 [testenv:docs-linkcheck]
48 deps = -rdocs/requirements.txt
49 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
50