Run multiple test assemblies in parallel with dotnet test and NUnit
See original GitHub issueWe want to run multiple assemblies in parallel with dotnet test
and NUnit 3.x. This is no problem using the nunit-console runner, however, in .NET 5 you are supposed to use dotnet test
instead which does not seem to have the possiblity to run the given assemblies in parallel.
Note: we don’t want to run the tests within one assembly in parallel, we want to run multiple assemblies that are given to dotnet test
in parallel.
Best regards, D.R.
Issue Analytics
- State:
- Created 2 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
How to run NUnit tests in parallel from command line?
In theory, NUnit might run them in parallel or not but in fact if it's possible it runs the tests in parallel up...
Read more >dotnet test running assemblies in parallel (when mixing ...
I have an issue where "dotnet test" is running assemblies in parallel. I have tried adding [NonParallelizable] and [assembly: ...
Read more >Framework Parallel Test Execution
The NUnit 3.0 framework can run tests in parallel within an assembly. This is a completely separate facility from Engine Parallel Test Execution, ......
Read more >Run your unit tests in parallel with NUnit - Sander Aernouts' blog
You can configure NUnit to only run tests in one fixture in parallel with tests in another fixture, but this limits the amount...
Read more >dotnet test command - .NET CLI
The dotnet test command builds the solution and runs a test host application for each test project in the solution. The test host...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@drauch there is --parallel option, but I see it is missing from the help.
And also
--logger:"console;verbosity=detailed"
to see easier how tests are executing, but it will mix the output.Tried it out today already, works like a charm. Many thanks @nohwnd 🥇