Add section on running tests in parallel to the FAQ

This commit is contained in:
Martin Hořeňovský 2022-06-22 00:14:26 +02:00
parent 95a1206805
commit 5d269045b2
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 11 additions and 0 deletions

View File

@ -46,6 +46,17 @@ This means that we will not knowingly make backwards-incompatible changes
without incrementing the major version number.
## Does Catch2 support running tests in parallel?
Not natively, no. We see running tests in parallel as the job of an
external test runner, that can also run them in separate processes,
support test execution timeouts and so on.
However, Catch2 provides some tools that make the job of external test
runners easier. [See the relevant section in our page on best
practices](usage-tips.md#parallel-tests).
---
[Home](Readme.md#top)