GENIUS-130: OF Tunnels support For ITM Direct Tunnels (of-tunnels)
[integration/test.git] / docs / conf.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 # SPDX-License-Identifier: EPL-1.0
4 ##############################################################################
5 # Copyright (c) 2018 The Linux Foundation and others.
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are made available under the terms of the Eclipse Public License v1.0
9 # which accompanies this distribution, and is available at
10 # http://www.eclipse.org/legal/epl-v10.html
11 ##############################################################################
12
13 import platform
14 from docs_conf.conf import *
15
16 # Append to intersphinx_mapping
17 intersphinx_mapping["odl-releng-builder"] = (
18     "http://docs.opendaylight.org/projects/releng-builder/en/latest/",
19     None,
20 )
21
22 linkcheck_ignore = [
23     # Ignore jenkins because it's often slow to respond.
24     "https://jenkins.opendaylight.org/releng",
25     "https://jenkins.opendaylight.org/sandbox",
26 ]
27
28 nitpicky = True
29
30 if platform.system() != "Windows":
31     import subprocess
32
33     subprocess.call(["./build-integration-robot-libdoc.sh"])