mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
9 lines
150 B
Bash
Executable file
9 lines
150 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
FILTERS=" "
|
|
if [ ! -z "$TEST_FILTERS" ]; then
|
|
FILTERS="--filter $TEST_FILTERS"
|
|
fi
|
|
|
|
dotnet test $FILTERS --no-build -v n < /dev/null
|