-
Hi, I just checked the video of Test.Platform and did some PoC on my project. Feels great, I can feel a lot of performance boost when running some heavy E2E API tests. However, when I tried to run it inside the container and invoke the test project by dll directly instead of by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Here is our documentation https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-integration-dotnet-test#dotnet-test---microsofttestingplatform-mode. The easiest in my opinion is the extra Note that we are working on a new integration in dotnet test that would simplify parameter handling but that's wip at the moment. We will do a blogpost when available. |
Beta Was this translation helpful? Give feedback.
In docker you should run the executable / dll directly. Either by executing it, or via dotnet exec. You can then specify --filter to filter the tests (or --help to print all the options available).
Showing on windows but it is the same principle.
In this case you don't need SDK in the image.