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