add docker support for sims
[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,topoPortMapping}: - ./buildTesttool.sh
21   {py27,portmapping,topoPortMapping,rspn,topology,olm,end2end}: - ./buildHoneynode.sh
22   #py27: nosetests --with-xunit transportpce_tests/
23   {py27,portmapping}: - nosetests --with-xunit transportpce_tests/test_portmapping.py
24   {py27,topoPortMapping}: - nosetests --with-xunit transportpce_tests/test_topoPortMapping.py
25   {py27,topology}: - nosetests --with-xunit transportpce_tests/test_topology.py
26   {py27,rspn}: - nosetests --with-xunit transportpce_tests/test_renderer_service_path_nominal.py
27   {py27,pce}: - nosetests --with-xunit transportpce_tests/test_pce.py
28   {py27,olm}: - nosetests --with-xunit transportpce_tests/test_olm.py
29   {servicehandler}: - ./SH_func_tests.sh
30   {servicehandler}: - nosetests --with-xunit transportpce_tests/test_servicehandler.py
31   {py27,end2end}: - nosetests --with-xunit transportpce_tests/test_end2end.py
32
33
34 [testenv:docs]
35 deps = -rdocs/requirements.txt
36 commands =
37     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
38
39 [testenv:docs-linkcheck]
40 deps = -rdocs/requirements.txt
41 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
42