Remote Unit Testing
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
platformio test
|
||||
===============
|
||||
|
||||
.. versionadded:: 3.0
|
||||
Helper command for local :ref:`unit_testing`.
|
||||
|
||||
.. contents::
|
||||
|
||||
@@ -28,7 +28,7 @@ Usage
|
||||
Description
|
||||
-----------
|
||||
|
||||
Run tests from PlatformIO based project. More details about PlatformIO
|
||||
Run locally tests from PlatformIO based project. More details about PlatformIO
|
||||
:ref:`unit_testing`.
|
||||
|
||||
This command allows you to apply the tests for the environments specified
|
||||
@@ -75,17 +75,36 @@ For example, ``platformio test --ignore "mytest*" -i "test[13]"``
|
||||
.. option::
|
||||
--upload-port
|
||||
|
||||
Upload port of embedded board. To print all available ports use
|
||||
:ref:`cmd_device` command.
|
||||
A port that is intended for firmware uploading. To list available ports
|
||||
please use :ref:`cmd_device_list` command.
|
||||
|
||||
If upload port is not specified, PlatformIO will try to detect it automatically.
|
||||
|
||||
.. option::
|
||||
--test-port
|
||||
|
||||
A Serial/UART port that PlatformIO uses as communication interface between
|
||||
PlatformIO Unit Test Engine and target device. To list available ports
|
||||
please use :ref:`cmd_device_list` command.
|
||||
|
||||
If test port is not specified, PlatformIO will try to detect it automatically.
|
||||
|
||||
.. option::
|
||||
-d, --project-dir
|
||||
|
||||
Specify the path to project directory. By default, ``--project-dir`` is equal
|
||||
to current working directory (``CWD``).
|
||||
|
||||
.. option::
|
||||
--without-building
|
||||
|
||||
Skip building stage.
|
||||
|
||||
.. option::
|
||||
--without-uploading
|
||||
|
||||
Skip uploading stage
|
||||
|
||||
.. option::
|
||||
-v, --verbose
|
||||
|
||||
|
||||
@@ -0,0 +1,134 @@
|
||||
.. Copyright 2014-present PlatformIO <contact@platformio.org>
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
.. _cmd_remote_test:
|
||||
|
||||
platformio remote test
|
||||
======================
|
||||
|
||||
Helper command for remote :ref:`unit_testing`.
|
||||
|
||||
.. contents::
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
platformio remote test [OPTIONS]
|
||||
|
||||
# run tests on specified PIO Remote Agent
|
||||
platformio remote --agent NAME test [OPTIONS]
|
||||
|
||||
Description
|
||||
-----------
|
||||
|
||||
Run remotely tests from PlatformIO based project. More details about PlatformIO
|
||||
:ref:`unit_testing`.
|
||||
|
||||
This command allows you to apply the tests for the environments specified
|
||||
in :ref:`projectconf`.
|
||||
|
||||
Options
|
||||
-------
|
||||
|
||||
.. program:: platformio remote test
|
||||
|
||||
.. option::
|
||||
-e, --environment
|
||||
|
||||
Process specified environments. More details :option:`platformio run --environment`
|
||||
|
||||
.. option::
|
||||
-i, --ignore
|
||||
|
||||
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 :ref:`projectconf_test_ignore` option from
|
||||
:ref:`projectconf`.
|
||||
|
||||
.. list-table::
|
||||
:header-rows: 1
|
||||
|
||||
* - Pattern
|
||||
- Meaning
|
||||
|
||||
* - ``*``
|
||||
- matches everything
|
||||
|
||||
* - ``?``
|
||||
- matches any single character
|
||||
|
||||
* - ``[seq]``
|
||||
- matches any character in seq
|
||||
|
||||
* - ``[!seq]``
|
||||
- matches any character not in seq
|
||||
|
||||
For example, ``platformio remote test --ignore "mytest*" -i "test[13]"``
|
||||
|
||||
.. option::
|
||||
--upload-port
|
||||
|
||||
A port that is intended for firmware uploading. To list available ports
|
||||
please use :ref:`cmd_device_list` command.
|
||||
|
||||
If upload port is not specified, PlatformIO will try to detect it automatically.
|
||||
|
||||
.. option::
|
||||
--test-port
|
||||
|
||||
A Serial/UART port that PlatformIO uses as communication interface between
|
||||
PlatformIO Unit Test Engine and target device. To list available ports
|
||||
please use :ref:`cmd_device_list` command.
|
||||
|
||||
If test port is not specified, PlatformIO will try to detect it automatically.
|
||||
|
||||
.. option::
|
||||
-d, --project-dir
|
||||
|
||||
Specify the path to project directory. By default, ``--project-dir`` is equal
|
||||
to current working directory (``CWD``).
|
||||
|
||||
.. option::
|
||||
-r, --build-remotely
|
||||
|
||||
By default, :ref:`pio_remote` builds project on the local machine and deploy
|
||||
final testing firmware Over-The-Air (OTA) to remote device.
|
||||
|
||||
If you need to build project on remote machine, please use
|
||||
:option:`platformio remote test --build-remotely` option. In this case,
|
||||
:ref:`pio_remote` will automatically deploy your project to remote machine,
|
||||
install required toolchains, frameworks, SDKs, etc and process tests.
|
||||
|
||||
|
||||
.. option::
|
||||
--without-building
|
||||
|
||||
Skip building stage.
|
||||
|
||||
.. option::
|
||||
--without-uploading
|
||||
|
||||
Skip uploading stage
|
||||
|
||||
.. option::
|
||||
-v, --verbose
|
||||
|
||||
Shows detailed information when processing environments.
|
||||
|
||||
This option can be set globally using :ref:`setting_force_verbose` setting
|
||||
or by environment variable :envvar:`PLATFORMIO_SETTING_FORCE_VERBOSE`.
|
||||
|
||||
Examples
|
||||
--------
|
||||
|
||||
For the examples please follow to :ref:`unit_testing` page.
|
||||
@@ -45,3 +45,4 @@ To print all available commands and options use:
|
||||
cmd_agent
|
||||
cmd_device
|
||||
cmd_run
|
||||
cmd_test
|
||||
|
||||
Reference in New Issue
Block a user