mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 20:54:04 +00:00
9 lines
243 B
Bash
Executable file
9 lines
243 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ "${CLAUDECODE}" != "1" ]]; then
|
|
COLOR_FLAG="--colors=always"
|
|
else
|
|
COLOR_FLAG="--colors=never"
|
|
fi
|
|
|
|
docker compose exec -e COLUMNS=$(tput cols) -T test vendor/bin/pest ${COLOR_FLAG} --no-coverage --filter "$@"
|