diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-10-01 16:00:34 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-10-01 16:00:34 +0300 |
| commit | 884fd92f1320d17daebb772297da03fb2cfa59b8 (patch) | |
| tree | 3aa80af1df6ffa1d70f21f9fc4411f451c8b6c56 /utils/phpunit.sh | |
| parent | 8fcc68baf5b0ff964a0a4a045353462586e0e316 (diff) | |
drop opentelemetry
Diffstat (limited to 'utils/phpunit.sh')
| -rwxr-xr-x | utils/phpunit.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/phpunit.sh b/utils/phpunit.sh index e8f00d0f5..667ff92f5 100755 --- a/utils/phpunit.sh +++ b/utils/phpunit.sh @@ -1,5 +1,7 @@ #!/bin/sh +export PHP_IMAGE=registry.fakecake.org/infra/php8.3-alpine3.20 + docker run --rm -v $(pwd):/app \ - --workdir /app registry.fakecake.org/infra/php-fpm8.3-alpine3.19:latest \ + --workdir /app ${PHP_IMAGE} \ php83 -d memory_limit=-1 ./vendor/bin/phpunit --exclude integration |