12 lines
558 B
Bash
Executable file
12 lines
558 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# Set up logging.
|
|
log() { echo "️🧪 $(basename $0): $@"; }
|
|
|
|
# Move into the root folder and make sure we're set up.
|
|
cd $(dirname $0)/..
|
|
./scripts/setup.sh || exit 1
|
|
|
|
dotnet test --test-adapter-path:. --logger:"junit;LogFilePath=../artifacts/{assembly}-test-result.xml;MethodFormat=Default;FailureBodyFormat=Verbose" --collect:"XPlat Code Coverage"
|
|
dotnet tool run reportgenerator -reports:tests/*/TestResults/*/coverage.cobertura.xml -targetdir:./coverage "-reporttypes:Cobertura;TextSummary"
|
|
grep "Line coverage" coverage/Summary.txt
|