Skip to content

Commit eeb5ac4

Browse files
committed
Upgrade Doctest and GoogleTest testing frameworks to the latest versions
1 parent aea9075 commit eeb5ac4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

HISTORY.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ test-driven methodologies, and modern toolchains for unrivaled success.
2121
6.1.16 (2024-??-??)
2222
~~~~~~~~~~~~~~~~~~~
2323

24-
* Upgraded the `Unity <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/unity.html>`__ testing framework to version 2.6.0, incorporating the latest features and improvements for enhanced testing capabilities
24+
* Upgraded the `Doctest <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/doctest.html>`__ testing framework to version 2.4.11, the `GoogleTest <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/doctest.html>`__ to version 1.15.2, and the `Unity <https://docs.platformio.org/en/latest/advanced/unit-testing/frameworks/unity.html>`__ to version 2.6.0, incorporating the latest features and improvements for enhanced testing capabilities
2525
* Corrected an issue where the incorrect public class was imported for the ``DoctestTestRunner`` (`issue #4949 <https://github.com/platformio/platformio-core/issues/4949>`_)
2626

2727
6.1.15 (2024-04-25)

platformio/test/runners/doctest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def _parse_assert(self, line):
101101

102102

103103
class DoctestTestRunner(TestRunnerBase):
104-
EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.9"]
104+
EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.11"]
105105

106106
def __init__(self, *args, **kwargs):
107107
super().__init__(*args, **kwargs)

platformio/test/runners/googletest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def _parse_source_and_message(self, stdout):
8888

8989

9090
class GoogletestTestRunner(TestRunnerBase):
91-
EXTRA_LIB_DEPS = ["google/googletest@^1.12.1"]
91+
EXTRA_LIB_DEPS = ["google/googletest@^1.15.2"]
9292

9393
def __init__(self, *args, **kwargs):
9494
super().__init__(*args, **kwargs)

0 commit comments

Comments
 (0)