mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
9 lines
211 B
Bash
Executable file
9 lines
211 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 --logger "console;verbosity=normal" < /dev/null
|