9 lines
270 B
Bash
9 lines
270 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Run phpt tests inside the container.
|
||
|
|
# Usage: ./run.sh [filter] — filter matches against test filename substrings
|
||
|
|
# Example: ./run.sh extract_raw_date
|
||
|
|
|
||
|
|
CONTAINER=${CONTAINER:-folderweb-default}
|
||
|
|
|
||
|
|
podman exec "$CONTAINER" php /var/www/tests/run.php "$@"
|