mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Add new option “--no-reset” to “pio test” command
This commit is contained in:
@ -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
2
docs
Submodule docs updated: f07d51a851...6e750d26fe
@ -14,7 +14,7 @@
|
||||
|
||||
import sys
|
||||
|
||||
VERSION = (3, 3, "0a4")
|
||||
VERSION = (3, 3, "0a5")
|
||||
__version__ = ".".join([str(s) for s in VERSION])
|
||||
|
||||
__title__ = "platformio"
|
||||
|
@ -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:])
|
||||
|
@ -27,7 +27,7 @@ PACKAGE_DEPS = {
|
||||
},
|
||||
"tool": {
|
||||
"name": "tool-pioplus",
|
||||
"requirements": ">=0.6.6,<2"
|
||||
"requirements": ">=0.6.9,<2"
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user