File: conf.py

package info (click to toggle)
lava 2026.01-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 30,796 kB
  • sloc: python: 82,790; javascript: 16,658; sh: 1,364; makefile: 335
file content (105 lines) | stat: -rw-r--r-- 2,465 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Copyright (C) 2013 Neil Williams
#
# Author: Neil Williams <codehelp@debian.org>
#
# SPDX-License-Identifier: GPL-2.0-or-later
from os.path import abspath
from sys import path

path.insert(0, abspath(".."))

from lava_common.version import version as lava_version

project = "LAVA"
copyright = "2010-2024, Linaro Limited"
version = lava_version()
release = version

exclude_patterns = ["_build"]
master_doc = "lava-server"  # Do not require index.rst
man_pages = [
    (
        "lava-coordinator",
        "lava-coordinator",
        "manage multinode communications",
        ["Linaro Validation Team"],
        1,
    ),
    (
        "lava-server",
        "lava-server",
        "lava-server command line support",
        ["Linaro Validation Team"],
        1,
    ),
    (
        "lava-run",
        "lava-run",
        "run jobs on LAVA devices",
        ["Linaro Validation Team"],
        1,
    ),
    (
        "lava-worker",
        "lava-worker",
        "manage connections to lava server",
        ["Linaro Validation Team"],
        8,
    ),
    (
        "lava-lxc-mocker",
        "lava-lxc-mocker",
        "mock LXC commands used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        7,
    ),
    (
        "lxc-attach",
        "lxc-attach",
        "mock lxc-attach command used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        1,
    ),
    (
        "lxc-create",
        "lxc-create",
        "mock lxc-create command used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        1,
    ),
    (
        "lxc-destroy",
        "lxc-destroy",
        "mock lxc-destroy command used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        1,
    ),
    (
        "lxc-device",
        "lxc-device",
        "mock lxc-device command used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        1,
    ),
    (
        "lxc-info",
        "lxc-info",
        "mock lxc-info command used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        1,
    ),
    (
        "lxc-start",
        "lxc-start",
        "mock lxc-start command used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        1,
    ),
    (
        "lxc-stop",
        "lxc-stop",
        "mock lxc-stop command used by LAVA",
        ["Senthil Kumaran S <senthil.kumaran@linaro.org>"],
        1,
    ),
]