Helper command for local Unit Testing.
platformio test [OPTIONS]
pio test [OPTIONS]
Run locally tests from PlatformIO based project. More details about PlatformIO Unit Testing.
This command allows you to apply the tests for the environments specified in Project Configuration File platformio.ini.
Process specified environments. More details platformio run --environment
Ignore tests where the name matches specified patterns. More than one pattern is allowed. If you need to ignore some tests for the specific environment, please take a look at test_ignore option from Project Configuration File platformio.ini.
Pattern |
Meaning |
---|---|
|
matches everything |
|
matches any single character |
|
matches any character in seq |
|
matches any character not in seq |
For example, platformio test --ignore "mytest*" -i "test[13]"
A port that is intended for firmware uploading. To list available ports please use platformio device list command.
If upload port is not specified, PlatformIO will try to detect it automatically.
A Serial/UART port that PlatformIO uses as communication interface between PlatformIO Unit Test Engine and target device. To list available ports please use platformio device list command.
If test port is not specified, PlatformIO will try to detect it automatically.
Specify the path to project directory. By default, --project-dir
is equal
to current working directory (CWD
).
Skip building stage.
Skip uploading stage
Shows detailed information when processing environments.
This option can be set globally using force_verbose setting
or by environment variable PLATFORMIO_SETTING_FORCE_VERBOSE
.
For the examples please follow to Unit Testing page.