mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
9 lines
172 B
Bash
Executable file
9 lines
172 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
cd ../BTCPayServer.Tests
|
|
docker-compose -v
|
|
docker-compose down --v
|
|
docker-compose pull
|
|
docker-compose build
|
|
docker-compose run -e "TEST_FILTERS=$1" tests
|