btcpayserver/BTCPayServer.Tests/docker-entrypoint.sh

10 lines
211 B
Bash
Raw Normal View History

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