mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-28 19:34:23 +01:00
9 lines
264 B
Bash
Executable File
9 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
|