Replies: 1 comment 4 replies
-
I'm curious from where you get this impression? If there is a misleading or unclear documentation somewhere we would definitely want to improve it. You can use
The story for |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
👋🏻 G'Day!
<Narrator's voice>Previously, in dotnet Test</narrator's voice> we can use the command
dotnet test
and it would find the test projects and run the tests against them.With MTP it looks like we now need to
dotnet run
the test project. Ok, fine .. but this means we need to do this explicitly for each project in the solution. Sure, it's a few more lines in a CI file .. but it's a bit more annoying when working in the CLI and we need to run each command separately to test all the tests in a solution.Is there a way to have
dotnet run
be smarter and find and run all tests, even if we give it a filter?Yes, i could create a PS script or shell script, but i'm wondering if this is a PITA and regression considering the easier barrier to entry via
dotnet test
.Will
dotnet test
be the future way which is a wrapper to calling 'dotnet run' for each test if is told/finds/etc?Beta Was this translation helpful? Give feedback.
All reactions