btcpayserver/BTCPayServer.Tests/docker-entrypoint.sh
2019-05-02 15:31:51 +09:00

8 lines
264 B
Bash
Executable file

#!/bin/sh
set -e
dotnet test --filter Fast=Fast --no-build
dotnet test --filter Integration=Integration --no-build -v n
if [[ "$TESTS_RUN_EXTERNAL_INTEGRATION" == "true" ]]; then
dotnet test --filter ExternalIntegration=ExternalIntegration --no-build -v n
fi