We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8672d1e commit c5752ffCopy full SHA for c5752ff
src/Cli/dotnet/Commands/Test/TestApplication.cs
@@ -55,6 +55,9 @@ private ProcessStartInfo CreateProcessStartInfo(TestOptions testOptions)
55
{
56
var processStartInfo = new ProcessStartInfo
57
58
+ // We should get correct RunProperties right away.
59
+ // For the case of dotnet test --test-modules path/to/dll, the TestModulesFilterHandler is responsible
60
+ // for providing the dotnet muxer as RunCommand, and `exec "path/to/dll"` as RunArguments.
61
FileName = Module.RunProperties.RunCommand,
62
Arguments = GetArguments(testOptions),
63
RedirectStandardOutput = true,
0 commit comments