Allow to ignore tests using glob patterns // Issue #408

This commit is contained in:
Ivan Kravets
2016-06-16 00:36:04 +03:00
parent 6a08b2126f
commit 8a67ea9ca2
3 changed files with 63 additions and 22 deletions
+26
View File
@@ -42,6 +42,32 @@ Options
Process specified environments. More details :option:`platformio run --environment`
.. option::
-i, --ignore
Ignore tests where the name matches with specified pattern. More than one
option/pattern is allowed.
.. 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 test --ignore "mytest*" -i "test[13]"``
.. option::
--upload-port