X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=docs%2Fconf.py;h=379b33bc72b761e93cc33aaa29a7dc30c11da477;hb=f1e6f63879710d7899107eb32880549a7edbe1c5;hp=f8d31cf893de749962616fa22c9d2132e9ae2a5a;hpb=fb0e7f8fc259d092ffa897b4509f19ac7d26cb60;p=integration%2Ftest.git diff --git a/docs/conf.py b/docs/conf.py index f8d31cf893..379b33bc72 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,10 +10,11 @@ # http://www.eclipse.org/legal/epl-v10.html ############################################################################## +import platform from docs_conf.conf import * # Append to intersphinx_mapping -#intersphinx_mapping['odl-releng-builder'] = ('http://docs.opendaylight.org/projects/releng-builder/en/latest/', None) +intersphinx_mapping['odl-releng-builder'] = ('http://docs.opendaylight.org/projects/releng-builder/en/latest/', None) linkcheck_ignore = [ # Ignore jenkins because it's often slow to respond. @@ -22,3 +23,7 @@ linkcheck_ignore = [ ] nitpicky = True + +if platform.system() != 'Windows': + import subprocess + subprocess.call(["./build-integration-robot-libdoc.sh"])