Forrest logo
back to the pio tool

pio-test:tldr:2daa6

pio-test: Specify a custom configuration file for running the tests.
$ pio test --project-conf ${path-to-platformio-ini}
try on your machine

The command "pio test --project-conf ${path-to-platformio-ini}" is used to execute tests defined in a PlatformIO project.

Here's a breakdown of the command:

  • "pio test" instructs PlatformIO to run the test command.
  • "--project-conf" flag is used to specify a custom configuration file for the project.
  • "${path-to-platformio-ini}" is a placeholder that represents the path to the configuration file, usually named "platformio.ini".

By providing the path to the platformio.ini file, you can customize various aspects of the project configuration, such as test environments, test frameworks, test cases, etc.

Executing this command triggers the execution of the specified tests according to the configuration file.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pio tool