Files
btcpayserver/BTCPayServer.Tests/docker-entrypoint.sh
2019-04-22 17:19:04 +09:00

9 lines
264 B
Bash
Executable File

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