lighty.io initializer
[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}: - bash -c "if [ ! `which mvn` ]; then ./installMavenCentOS.sh  ; fi"
19   {py27,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end}: - bash -c "(cd .. && mvn clean install -s tests/odl_settings.xml -DskipTests -Dmaven.javadoc.skip=true)"
20   {py27,portmapping,topoPortMapping,rspn,topology,olm,end2end}: - ./buildHoneynode.sh
21   #py27: nosetests --with-xunit transportpce_tests/1.2.1/
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}: - ./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
35
36 [testenv:docs]
37 deps = -rdocs/requirements.txt
38 commands =
39     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
40
41 [testenv:docs-linkcheck]
42 deps = -rdocs/requirements.txt
43 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
44