run
Module implementing the command line entry point for executing tests.
This module can be executed from the command line using the following approaches:
1 2 |
|
Instead of python
it is possible to use also other Python interpreters.
This module is also used by the installed robot
start-up script.
This module also provides robot.run and robot.run_cli functions that can be used programmatically. Other code is for internal usage.
run(*sources, **options)
¶
Programmatic entry point for running tests.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sources |
list[str | Path]
|
Paths to test case files/directories to be executed similarly
as when running the |
()
|
options |
dict[str, Any]
|
Options to configure and control execution. Accepted
options are mostly same as normal command line options to the |
{}
|
Most options that can be given from the command line work. An exception
is that options --pythonpath
, --argumentfile
, --help
and
--version
are not supported.
Options that can be given on the command line multiple times can be
passed as lists. For example, include=['tag1', 'tag2']
is equivalent
to --include tag1 --include tag2
. If such options are used only once,
they can be given also as a single string like include='tag'
.
Options that accept no value can be given as Booleans. For example,
dryrun=True
is same as using the --dryrun
option.
Options that accept string NONE
as a special value can also be used
with Python None
. For example, using log=None
is equivalent to
--log NONE
.
listener
, prerunmodifier
and prerebotmodifier
options allow
passing values as Python objects in addition to module names these command
line options support. For example, run('tests', listener=MyListener())
.
To capture the standard output and error streams, pass an open file or
file-like object as special keyword arguments stdout
and stderr
,
respectively.
A return code is returned similarly as when running on the command line. Zero means that tests were executed and no test failed, values up to 250 denote the number of failed tests, and values between 251-255 are for other statuses documented in the Robot Framework User Guide.
Example:
1 2 3 4 5 6 |
|
Equivalent command line usage:
1 2 3 |
|
Source code in src/robot/run.py
run_cli(arguments=None, exit=True)
¶
Command line execution entry point for running tests.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
arguments |
list[str] | None
|
Command line options and arguments as a list of strings.
Defaults to |
None
|
exit |
bool
|
If |
True
|
Entry point used when running tests from the command line, but can also be used by custom scripts that execute tests. Especially useful if the script itself needs to accept same arguments as accepted by Robot Framework, because the script can just pass them forward directly along with the possible default values it sets itself.
Example:
1 2 3 4 5 6 7 |
|
See also the robot.run function that allows setting options as keyword
arguments like name="Example"
and generally has a richer API for
programmatic test execution.