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 @@ -139,14 +139,14 @@ NONQUARANTINE_FILTER="Quarantined!=true"
139
139
QUARANTINE_FILTER=" Quarantined=true"
140
140
if [ " $quarantined " == true ]; then
141
141
echo " Running all tests including quarantined."
142
- $DOTNET_ROOT /dotnet vstest $test_binary_path --logger:xunit --TestCaseFilter:" $QUARANTINE_FILTER "
142
+ $DOTNET_ROOT /dotnet vstest $test_binary_path --logger:xunit --logger: " console;verbosity=normal " -- TestCaseFilter:" $QUARANTINE_FILTER "
143
143
if [ $? != 0 ]; then
144
144
echo " Quarantined tests failed!" 1>&2
145
145
# DO NOT EXIT
146
146
fi
147
147
else
148
148
echo " Running non-quarantined tests."
149
- $DOTNET_ROOT /dotnet vstest $test_binary_path --logger:xunit --TestCaseFilter:" $NONQUARANTINE_FILTER "
149
+ $DOTNET_ROOT /dotnet vstest $test_binary_path --logger:xunit --logger: " console;verbosity=normal " -- TestCaseFilter:" $NONQUARANTINE_FILTER "
150
150
exit_code=$?
151
151
if [ $exit_code != 0 ]; then
152
152
echo " Non-quarantined tests failed!" 1>&2
You can’t perform that action at this time.
0 commit comments