phpunit - skip integration tests
This commit is contained in:
parent
d2424b9e4b
commit
01c9869e2b
|
@ -20,6 +20,8 @@ include:
|
||||||
|
|
||||||
phpunit:
|
phpunit:
|
||||||
extends: .phpunit
|
extends: .phpunit
|
||||||
|
variables:
|
||||||
|
PHPUNIT_ARGS: --exclude integration
|
||||||
|
|
||||||
eslint:
|
eslint:
|
||||||
extends: .eslint
|
extends: .eslint
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
docker run --rm -v $(pwd):/app \
|
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
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue