You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make tests executing concurrently can speed-up the test runs and thus save developer and pipeline time. This will especially become relevant with the growing number of tests. An implementation might be simplest done through the utilization of std::async APIs but needs to be thought well so then possible exceptions can be caught in a safe way.
The text was updated successfully, but these errors were encountered:
Make tests executing concurrently can speed-up the test runs and thus save developer and pipeline time. This will especially become relevant with the growing number of tests. An implementation might be simplest done through the utilization of
std::async
APIs but needs to be thought well so then possible exceptions can be caught in a safe way.The text was updated successfully, but these errors were encountered: