File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -77,15 +77,15 @@ set NONQUARANTINE_FILTER="Quarantined!=true"
77
77
set QUARANTINE_FILTER = " Quarantined=true"
78
78
if %$quarantined% == true (
79
79
echo Running quarantined tests.
80
- %DOTNET_ROOT% \dotnet vstest %$target% --logger:xunit --TestCaseFilter:%QUARANTINE_FILTER%
80
+ %DOTNET_ROOT% \dotnet vstest %$target% --logger:xunit --logger: " console;verbosity=normal " -- TestCaseFilter:%QUARANTINE_FILTER%
81
81
if errorlevel 1 (
82
82
echo Failure in quarantined test 1 >& 2
83
83
REM DO NOT EXIT and DO NOT SET EXIT_CODE to 1
84
84
)
85
85
) else (
86
86
REM Filter syntax: https://github.com/Microsoft/vstest-docs/blob/master/docs/filter.md
87
87
echo Running non-quarantined tests.
88
- %DOTNET_ROOT% \dotnet vstest %$target% --logger:xunit --TestCaseFilter:%NONQUARANTINE_FILTER%
88
+ %DOTNET_ROOT% \dotnet vstest %$target% --logger:xunit --logger: " console;verbosity=normal " -- TestCaseFilter:%NONQUARANTINE_FILTER%
89
89
if errorlevel 1 (
90
90
echo Failure in non-quarantined test 1 >& 2
91
91
set exit_code = 1
You can’t perform that action at this time.
0 commit comments