add note about 2.8

This commit is contained in:
Max Schmitt 2024-11-25 10:05:03 +01:00
parent 2677d53458
commit 86e1249e05
2 changed files with 8 additions and 0 deletions

View file

@ -138,6 +138,10 @@ dotnet test -- xUnit.MaxParallelThreads=5
See [here](https://xunit.net/docs/running-tests-in-parallel.html) for more information to run tests in parallel with xUnit.
:::note
We recommend xUnit 2.8+ which uses the [`conservative` parallelism algorithm](https://xunit.net/docs/running-tests-in-parallel.html#algorithms) by default.
:::
</TabItem>
</Tabs>

View file

@ -81,6 +81,10 @@ It will create by default as many processes as there are cores on the system. Yo
dotnet test -- xUnit.MaxParallelThreads=5
```
:::note
We recommend xUnit 2.8+ which uses the [`conservative` parallelism algorithm](https://xunit.net/docs/running-tests-in-parallel.html#algorithms) by default.
:::
</TabItem>
</Tabs>