From becab0cf746d65d2cab9abd7df3bbe27b72a2dac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 27 Oct 2021 20:49:29 +0200 Subject: [PATCH] Add test sharding to the release notes --- docs/release-notes.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/release-notes.md b/docs/release-notes.md index c75e5ad4..2183e6cf 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -164,6 +164,9 @@ new design. * `Approx::operator()` is now properly `const` * Catch2's internal helper variables no longer use reserved identifiers (#578) * `--rng-seed` now accepts string `"random-device"` to generate random seed using `std::random_device` +* Catch2 now supports test sharding (#2257) + * You can ask for the tests to be split into N groups and only run one of them. + * This greatly simplifies parallelization of tests in a binary through external runner. ### Fixes