Add new option “--no-reset” to “pio test” command

This commit is contained in:
Ivan Kravets
2017-01-21 19:58:20 +02:00
parent 06209c17b5
commit b5ddf380ca
5 changed files with 6 additions and 3 deletions

View File

@ -19,6 +19,8 @@ PlatformIO 3.0
* Show detailed info about a library using `pio lib show <http://docs.platformio.org/page/userguide/lib/cmd_show.html>`__
command
(`issue #430 <https://github.com/platformio/platformio-core/issues/430>`_)
* Added new option ``--no-reset`` to `pio test <http://docs.platformio.org/en/latest/userguide/cmd_test.html>`__
command (allows to avoid automatic board's auto-reset when gathering test results)
* Added support for templated methods in ``*.ino to *.cpp`` converter
(`pull #858 <https://github.com/platformio/platformio-core/pull/858>`_)
* Produce less noisy output when ``-s/--silent`` options are used for

2
docs

Submodule docs updated: f07d51a851...6e750d26fe

View File

@ -14,7 +14,7 @@
import sys
VERSION = (3, 3, "0a4")
VERSION = (3, 3, "0a5")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -37,6 +37,7 @@ from platformio.pioplus import pioplus_call
resolve_path=True))
@click.option("--without-building", is_flag=True)
@click.option("--without-uploading", is_flag=True)
@click.option("--no-reset", is_flag=True)
@click.option("--verbose", "-v", is_flag=True)
def cli(*args, **kwargs): # pylint: disable=unused-argument
pioplus_call(sys.argv[1:])

View File

@ -27,7 +27,7 @@ PACKAGE_DEPS = {
},
"tool": {
"name": "tool-pioplus",
"requirements": ">=0.6.6,<2"
"requirements": ">=0.6.9,<2"
}
}