diff --git a/HISTORY.rst b/HISTORY.rst index dee938c3..23fc34a1 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -20,6 +20,7 @@ PlatformIO Core 6 * Show "TimeoutError" only in the verbose mode when can not find a serial port * Fixed an issue when a serial port was not automatically detected if the board has predefined HWIDs * Fixed an issue with endless scanning of project dependencies (`issue #4349 `_) +* Fixed an issue with |LDF| when incompatible libraries were used for the working project environment with the missed framework (`pull #4346 `_) 6.1.0 (2022-07-06) ~~~~~~~~~~~~~~~~~~ diff --git a/platformio/test/runners/readers/serial.py b/platformio/test/runners/readers/serial.py index 5a3aeeee..ac7765bc 100644 --- a/platformio/test/runners/readers/serial.py +++ b/platformio/test/runners/readers/serial.py @@ -73,7 +73,7 @@ class SerialTestOutputReader: ), upload_protocol=project_options.get("upload_protocol"), ensure_ready=True, - verbose=self.test_runner.verbose, + verbose=self.test_runner.options.verbose, ) if port: return port