My NUnit test is written in C# and it is built using .net core 3.1 . I am trying to run the tests inside it in parallel. I know that I can set the Parallelizable attribute at the fixture level like this [Parallelizable(ParallelScope.Fixtures)]. But, that is not what I am looking for. I want to run the tests from command line using "dotnet test".
So, I was just checking if there is any way to run like this
dotnet test --parallel FullyQualifiedName~NUnitNamespace.UnitTest1
dotnet test --parallel C:\NUnitTestDemo\bin\Debug\netcoreapp3.1\testproject.dll