mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 18:17:13 +02:00
Add hint about verbose output
This commit is contained in:
@ -124,7 +124,10 @@ class TestRunnerBase:
|
|||||||
try:
|
try:
|
||||||
return self.run_project_targets(targets)
|
return self.run_project_targets(targets)
|
||||||
except ReturnErrorCode:
|
except ReturnErrorCode:
|
||||||
raise UnitTestSuiteError("Building stage has failed, see errors above.")
|
raise UnitTestSuiteError(
|
||||||
|
"Building stage has failed, see errors above. "
|
||||||
|
"Use `pio test --verbose` option to enable verbose output."
|
||||||
|
)
|
||||||
|
|
||||||
def stage_uploading(self):
|
def stage_uploading(self):
|
||||||
if self.options.without_uploading or not self.platform.is_embedded():
|
if self.options.without_uploading or not self.platform.is_embedded():
|
||||||
@ -140,7 +143,10 @@ class TestRunnerBase:
|
|||||||
try:
|
try:
|
||||||
return self.run_project_targets(targets)
|
return self.run_project_targets(targets)
|
||||||
except ReturnErrorCode:
|
except ReturnErrorCode:
|
||||||
raise UnitTestSuiteError("Uploading stage has failed, see errors above.")
|
raise UnitTestSuiteError(
|
||||||
|
"Uploading stage has failed, see errors above. "
|
||||||
|
"Use `pio test --verbose` option to enable verbose output."
|
||||||
|
)
|
||||||
|
|
||||||
def stage_testing(self):
|
def stage_testing(self):
|
||||||
if self.options.without_testing:
|
if self.options.without_testing:
|
||||||
|
Reference in New Issue
Block a user