phpunit - skip integration tests

This commit is contained in:
Andrew Dolgov 2023-10-28 18:07:54 +03:00
parent d2424b9e4b
commit 01c9869e2b
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
2 changed files with 3 additions and 1 deletions

View File

@ -20,6 +20,8 @@ include:
phpunit:
extends: .phpunit
variables:
PHPUNIT_ARGS: --exclude integration
eslint:
extends: .eslint

View File

@ -1,6 +1,6 @@
#!/bin/sh
docker run --rm -v $(pwd):/app \
--workdir /app registry.fakecake.org/ci/php8.2-alpine:3.18 php82 -d memory_limit=-1 ./vendor/bin/phpunit
--workdir /app registry.fakecake.org/ci/php8.2-alpine:3.18 php82 -d memory_limit=-1 ./vendor/bin/phpunit --exclude integration