btcpayserver/BTCPayServer.Tests/docker-entrypoint.sh

10 lines
211 B
Bash
Raw Normal View History

2018-12-18 22:35:58 +09:00
#!/bin/sh
set -e
2019-06-03 15:36:50 +09:00
FILTERS=" "
2019-10-09 16:18:32 +09:00
if [ ! -z "$TEST_FILTERS" ]; then
2019-06-03 15:36:50 +09:00
FILTERS="--filter $TEST_FILTERS"
2019-06-03 15:32:20 +09:00
fi
2019-06-03 15:36:50 +09:00
dotnet test -c ${CONFIGURATION_NAME} $FILTERS --no-build -v n --logger "console;verbosity=normal" < /dev/null