mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 09:34:04 +00:00
7 lines
316 B
Bash
Executable file
7 lines
316 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
printf "Variant 1 (DB)\n\n"
|
|
docker-compose exec -T test env TENANCY_TEST_STORAGE_DRIVER=db vendor/bin/phpunit --coverage-php coverage/1.cov "$@"
|
|
printf "Variant 2 (Redis)\n\n"
|
|
docker-compose exec -T test env TENANCY_TEST_STORAGE_DRIVER=redis vendor/bin/phpunit --coverage-php coverage/2.cov "$@"
|