This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameservicewarden/test.sh

6 lines
245 B
Bash
Executable File

#!/bin/bash
for PROJ in tests/**/*.csproj
do
echo "Testing $PROJ"
dotnet test --logger trx -v n --blame --collect:"XPlat Code Coverage" "$PROJ" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
done