btcpayserver/BTCPayServer.Tests/docker-entrypoint.sh
2020-07-29 20:49:46 +09:00

9 lines
175 B
Bash
Executable file

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