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
224 B
Bash
Raw Normal View History

2021-03-30 20:57:57 +00:00
#!/bin/bash
for PROJ in tests/**/*.csproj
do
echo "Testing $PROJ"
dotnet test -v n --collect:"XPlat Code Coverage" "$PROJ" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=opencover
done