Skip to content

Commit 796cf96

Browse files
authored
Trying things out (#20264)
1 parent fbe7ae5 commit 796cf96

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eng/helix/content/runtests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,14 @@ NONQUARANTINE_FILTER="Quarantined!=true"
139139
QUARANTINE_FILTER="Quarantined=true"
140140
if [ "$quarantined" == true ]; then
141141
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"
143143
if [ $? != 0 ]; then
144144
echo "Quarantined tests failed!" 1>&2
145145
# DO NOT EXIT
146146
fi
147147
else
148148
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"
150150
exit_code=$?
151151
if [ $exit_code != 0 ]; then
152152
echo "Non-quarantined tests failed!" 1>&2

0 commit comments

Comments
 (0)