Youssef Victor
Youssef Victor
I don't think it's possible today to configure TRX from runsettings. Runsettings isn't really a first-class citizen of MTP, and MTP core doesn't know about runsettings. It's only the VSTestBridge...
@peterwald @drognanar for the Test Explorer question. It's likely reading the property from project evaluation and turning it into the env variable that holds runsettings. I don't think Test Explorer...
You can probably plug your own configuration provider via TestingPlatformBuilderHook. I think you should be able to get it to work with MTP that way.
It's supposed to be in https://learn.microsoft.com/dotnet/core/testing/microsoft-testing-platform-architecture-extensions but looks like the doc is missing some stuff, partially tracked by https://github.com/microsoft/testfx/issues/5552. In general though, `TestingPlatformBuilderHook` is an MSBuild item that lets Microsoft.Testing.Platform...
Thanks for reporting this @yeahg-dev. This is indeed a bug in the XAML generator that will be fixed by #18051
Hi @OsirisTerje I'm not super familiar with NUnit, but I got through the `TestSuite` constructor and seeing that the test isn't passing the filter: https://github.com/nunit/nunit/blob/a2f84b92c9c69ae9ee2932cfccb84cc0582b79ea/src/NUnitFramework/framework/Internal/Tests/TestSuite.cs#L96-L111
Thanks @OsirisTerje Here is the repro. [RetryRepro.zip](https://github.com/user-attachments/files/19247554/RetryRepro.zip) To see the behavior I'm describing, call `dotnet run` on the csproj. Following is the output on my machine: ``` .NET Testing Platform...
@OsirisTerje I think this is all about lack of filter support for `Id`: https://github.com/nunit/nunit3-vs-adapter/blob/3d0f824243aaaeb85621d3c7dddc92e7a7c45097/src/NUnitTestAdapter/VsTestFilter.cs#L60
I'll try to look again tomorrow.
@OsirisTerje Failing to discover/run tests in Test Explorer will be fixed by https://github.com/nunit/nunit3-vs-adapter/pull/1262. My PR for `Id` filtering didn't fix the issue so I reverted it. First thing is that...