build: fixing typos in scripts
This commit is contained in:
parent
83936c750c
commit
2ea1905fac
2 changed files with 8 additions and 9 deletions
|
@ -5,7 +5,6 @@ log() { echo "️🚢 $(basename $0): $@"; }
|
|||
|
||||
# Move into the root folder and make sure we're set up.
|
||||
cd $(dirname $0)/..
|
||||
|
||||
./scripts/setup.sh || exit 1
|
||||
|
||||
# Verify the input.
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
cd $(dirname $0)/..
|
||||
# Set up logging.
|
||||
log() { echo "️🧪 $(basename $0): $@"; }
|
||||
|
||||
if [ -f ./tests/*/*.csproj ]
|
||||
then
|
||||
# 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
|
||||
fi
|
||||
|
|
Reference in a new issue