builders
TestSuiteBuilder
¶
Builder to construct TestSuite
objects based on data on the disk.
The :meth:build
method constructs executable
:class:~robot.running.model.TestSuite
objects based on test data files
or directories. There are two main use cases for this API:
-
Execute the created suite by using its :meth:
~robot.running.model.TestSuite.run
method. The suite can be modified before execution if needed. -
Inspect the suite to see, for example, what tests it has or what tags tests have. This can be more convenient than using the lower level :mod:
~robot.parsing
APIs.
Both modifying the suite and inspecting what data it contains are easiest
done by using the :mod:~robot.model.visitor
interface.
This class is part of the public API and should be imported via the
:mod:robot.api
package. An alternative is using the
:meth:TestSuite.from_file_system <robot.running.model.TestSuite.from_file_system>
classmethod that uses this class internally.
Source code in src/robot/running/builder/builders.py
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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 |
|
__init__(included_suites='DEPRECATED', included_extensions=('.robot', '.rbt', '.robot.rst'), included_files=(), custom_parsers=(), defaults=None, rpa=None, lang=None, allow_empty_suite=False, process_curdir=True)
¶
:param included_suites:
This argument used to be used for limiting what suite file to parse.
It is deprecated and has no effect starting from RF 6.1. Use the
new included_files
argument or filter the created suite after
parsing instead.
:param included_extensions:
List of extensions of files to parse. Same as --extension
.
:param included_files:
List of names, paths or directory paths of files to parse. All files
are parsed by default. Same as --parse-include
. New in RF 6.1.
:param custom_parsers:
Custom parsers as names or paths (same as --parser
) or as
parser objects. New in RF 6.1.
:param defaults:
Possible test specific defaults from suite initialization files.
New in RF 6.1.
:param rpa:
Explicit execution mode. True
for RPA and False
for test
automation. By default, mode is got from data file headers.
Same as --rpa
or --norpa
.
:param lang:
Additional languages to be supported during parsing.
Can be a string matching any of the supported language codes or names,
an initialized :class:~robot.conf.languages.Language
subclass,
a list containing such strings or instances, or a
:class:~robot.conf.languages.Languages
instance.
:param allow_empty_suite:
Specify is it an error if the built suite contains no tests.
Same as --runemptysuite
.
:param process_curdir:
Control processing the special ${CURDIR}
variable. It is
resolved already at parsing time by default, but that can be
changed by giving this argument False
value.
Source code in src/robot/running/builder/builders.py
build(*paths)
¶
:param paths: Paths to test data files or directories.
:return: :class:~robot.running.model.TestSuite
instance.