mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
10 lines
211 B
Bash
Executable File
10 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
|