btcpayserver/BTCPayServer.Tests/docker-entrypoint.sh
2020-01-11 13:12:40 +09:00

10 lines
150 B
Bash
Executable File

#!/bin/sh
set -e
FILTERS=" "
if [ ! -z "$TEST_FILTERS" ]; then
FILTERS="--filter $TEST_FILTERS"
fi
dotnet test $FILTERS --no-build -v n < /dev/null