diff --git a/HISTORY.rst b/HISTORY.rst index 4328fe11..e1ddddc4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -62,11 +62,11 @@ PlatformIO Core 4 - Remove unused data using a new `pio system prune `__ command (`issue #3522 `_) - Dump data intended for IDE extensions/plugins using a new `pio project idedata `__ command - Added a new ``-e, --environment`` option to `pio project init `__ command that helps to update a PlatformIO project using existing environment - - Added support for "globstar/`**`" (recursive) pattern for the different commands and configuration options (`pio ci `__, `src_filter `__, `check_patterns `__, `library.json > srcFilter `__). Python 3.5+ is required. - - Updated PIO Unit Testing support for Mbed framework. Added compatibility with Mbed OS 6 + - Added support for "globstar/`**`" (recursive) pattern for the different commands and configuration options (`pio ci `__, `src_filter `__, `check_patterns `__, `library.json > srcFilter `__). Python 3.5+ is required + - Updated PIO Unit Testing support for Mbed framework and added compatibility with Mbed OS 6 - Do not generate ".travis.yml" for a new project, let the user have a choice - Do not escape compiler arguments in VSCode template on Windows - - Fixed an issue with Unit Testing engine when running multiple environments (`issue #3523 < https://github.com/platformio/platformio-core/issues/3523>`_) + - Fixed an issue with Unit Testing engine when running multiple environments (`issue #3523 `_) - Fixed an issue when Unit Testing engine fails with a custom project configuration file (`issue #3583 `_) 4.3.4 (2020-05-23) diff --git a/tests/commands/test_platform.py b/tests/commands/test_platform.py index 088f4b38..39afbeb5 100644 --- a/tests/commands/test_platform.py +++ b/tests/commands/test_platform.py @@ -18,7 +18,6 @@ import json from platformio.commands import platform as cli_platform from platformio.package.exception import UnknownPackageError -from platformio.platform.exception import IncompatiblePlatform def test_search_json_output(clirunner, validate_cliresult, isolated_pio_core):