mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Use default verbosity level for CI command
This commit is contained in:
@ -112,8 +112,6 @@ Buid project using pre-configured :ref:`projectconf`.
|
|||||||
Shows details about the results of processing environments. More details
|
Shows details about the results of processing environments. More details
|
||||||
:option:`platformio run --verbose`
|
:option:`platformio run --verbose`
|
||||||
|
|
||||||
By default, verbosity level is set to 1 (only errors will be printed).
|
|
||||||
|
|
||||||
Examples
|
Examples
|
||||||
--------
|
--------
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
# Copyright (C) Ivan Kravets <me@ikravets.com>
|
||||||
# See LICENSE for details.
|
# See LICENSE for details.
|
||||||
|
|
||||||
VERSION = (2, 0, "0a1")
|
VERSION = (2, 0, "0a2")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
@ -53,7 +53,7 @@ def validate_boards(ctx, param, value): # pylint: disable=W0613
|
|||||||
@click.option("--project-conf",
|
@click.option("--project-conf",
|
||||||
type=click.Path(exists=True, file_okay=True, dir_okay=False,
|
type=click.Path(exists=True, file_okay=True, dir_okay=False,
|
||||||
readable=True, resolve_path=True))
|
readable=True, resolve_path=True))
|
||||||
@click.option("--verbose", "-v", count=True, default=1)
|
@click.option("--verbose", "-v", count=True, default=3)
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
def cli(ctx, src, lib, exclude, board, # pylint: disable=R0913
|
def cli(ctx, src, lib, exclude, board, # pylint: disable=R0913
|
||||||
build_dir, keep_build_dir, project_conf, verbose):
|
build_dir, keep_build_dir, project_conf, verbose):
|
||||||
|
Reference in New Issue
Block a user