diff --git a/HISTORY.rst b/HISTORY.rst index 7a910971..2b307a33 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -26,7 +26,6 @@ PlatformIO Core 6 * **Unit Testing** - - Updated "Getting Started" documentation for `GoogleTest `__ testing and mocking framework - Export |UNITTESTING| flags only to the project build environment (``projenv``, files in "src" folder) - Merged the "building" stage with "uploading" for the embedded target (`issue #4307 `_) - Do not resolve dependencies from the project "src" folder when the `test_build_src `__ option is not enabled diff --git a/docs b/docs index 03cb09aa..148072a2 160000 --- a/docs +++ b/docs @@ -1 +1 @@ -Subproject commit 03cb09aa4c3541c0367e07842aa20e88ba93863e +Subproject commit 148072a28e6b135049b1ee54911a8f58ce7393c9 diff --git a/examples b/examples index 7376c622..b2657021 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit 7376c6225bccebf5b5f33d6cc099442fad79b30d +Subproject commit b26570214771dde4db03f04ff37988eef7effbf8 diff --git a/tests/commands/test_test.py b/tests/commands/test_test.py index 7965d75b..26089500 100644 --- a/tests/commands/test_test.py +++ b/tests/commands/test_test.py @@ -601,6 +601,10 @@ int main(int argc, char **argv) assert json_report["failure_nums"] == 1 +@pytest.mark.skipif( + sys.platform == "win32" and os.environ.get("GITHUB_ACTIONS") == "true", + reason="skip Github Actions on Windows (MinGW issue)", +) def test_googletest_framework(clirunner, tmp_path: Path): project_dir = tmp_path / "project" shutil.copytree(