From 6a3b6f0d4476663e4fc539e730a480a60aa32581 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 26 Jun 2022 17:21:09 +0300 Subject: [PATCH] Bump GoogleTest to ^1.12.0 and Doctest to ^2.4.9 --- platformio/test/runners/doctest.py | 2 +- platformio/test/runners/googletest.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/platformio/test/runners/doctest.py b/platformio/test/runners/doctest.py index 9a6df7cf..2360c4e6 100644 --- a/platformio/test/runners/doctest.py +++ b/platformio/test/runners/doctest.py @@ -102,7 +102,7 @@ class DoctestTestCaseParser: class DoctestTestRunner(TestRunnerBase): - EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.8"] + EXTRA_LIB_DEPS = ["doctest/doctest@^2.4.9"] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) diff --git a/platformio/test/runners/googletest.py b/platformio/test/runners/googletest.py index 973b16fa..9c8beba2 100644 --- a/platformio/test/runners/googletest.py +++ b/platformio/test/runners/googletest.py @@ -90,7 +90,7 @@ class GoogletestTestCaseParser: class GoogletestTestRunner(TestRunnerBase): - EXTRA_LIB_DEPS = ["google/googletest@^1.11.0"] + EXTRA_LIB_DEPS = ["google/googletest@^1.12.0"] def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs)