From eeb5ac456eff19a8f1e2bb46397ce486be7d2a72 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 1 Aug 2024 14:30:00 +0300 Subject: [PATCH] Upgrade Doctest and GoogleTest testing frameworks to the latest versions --- HISTORY.rst | 2 +- platformio/test/runners/doctest.py | 2 +- platformio/test/runners/googletest.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 296049e3db..41464ee25e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -21,7 +21,7 @@ test-driven methodologies, and modern toolchains for unrivaled success. 6.1.16 (2024-??-??) ~~~~~~~~~~~~~~~~~~~ -* Upgraded the `Unity `__ testing framework to version 2.6.0, incorporating the latest features and improvements for enhanced testing capabilities +* Upgraded the `Doctest `__ testing framework to version 2.4.11, the `GoogleTest `__ to version 1.15.2, and the `Unity `__ to version 2.6.0, incorporating the latest features and improvements for enhanced testing capabilities * Corrected an issue where the incorrect public class was imported for the ``DoctestTestRunner`` (`issue #4949 `_) 6.1.15 (2024-04-25) diff --git a/platformio/test/runners/doctest.py b/platformio/test/runners/doctest.py index dd30bc925a..30fd6b8c7e 100644 --- a/platformio/test/runners/doctest.py +++ b/platformio/test/runners/doctest.py @@ -101,7 +101,7 @@ def _parse_assert(self, line): class DoctestTestRunner(TestRunnerBase): - EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.9"] + EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.11"] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) diff --git a/platformio/test/runners/googletest.py b/platformio/test/runners/googletest.py index 8a4d1b15ae..80d59c7450 100644 --- a/platformio/test/runners/googletest.py +++ b/platformio/test/runners/googletest.py @@ -88,7 +88,7 @@ def _parse_source_and_message(self, stdout): class GoogletestTestRunner(TestRunnerBase): - EXTRA_LIB_DEPS = ["google/googletest@^1.12.1"] + EXTRA_LIB_DEPS = ["google/googletest@^1.15.2"] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)