added --blame argument to test.sh and lowered verbosity.

This commit is contained in:
Harrison Deng 2021-04-08 23:56:32 -05:00
parent eda8da3383
commit cfecc7c7b3

View File

@ -2,5 +2,5 @@
for PROJ in tests/**/*.csproj for PROJ in tests/**/*.csproj
do do
echo "Testing $PROJ" echo "Testing $PROJ"
dotnet test --logger trx -v d --collect:"XPlat Code Coverage" "$PROJ" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover dotnet test --logger trx -v n --blame --collect:"XPlat Code Coverage" "$PROJ" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
done done