From b8f6cf4f23eeac11957fb647d8967c65c87f0630 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Thu, 2 May 2019 15:29:59 +0900 Subject: [PATCH] Execute ExternalIntegration tests after --- BTCPayServer.Tests/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer.Tests/docker-entrypoint.sh b/BTCPayServer.Tests/docker-entrypoint.sh index a659d6902..1cd229031 100755 --- a/BTCPayServer.Tests/docker-entrypoint.sh +++ b/BTCPayServer.Tests/docker-entrypoint.sh @@ -2,7 +2,7 @@ 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 -dotnet test --filter Integration=Integration --no-build -v n