2018-03-31 12:18:23 -04:00
|
|
|
#!/usr/bin/env bash
|
2018-03-22 13:24:56 -04:00
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
SCRIPT_ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
2019-02-24 12:04:41 +03:00
|
|
|
echo "!!WARNING!! This script for pipeline test running and checking code coverage for netstandard and netcoreapp targets"
|
|
|
|
|
|
|
|
dotnet test -c Release /p:CollectCoverage=true /p:Threshold=75 \
|
|
|
|
/p:Exclude="[NUnit3.*]*" \
|
|
|
|
"${SCRIPT_ROOT}/../test/Flurl.Test/"
|