From b25ee0e462b6d694ea6a6aef835d7e3aa53acc7e Mon Sep 17 00:00:00 2001 From: Roman Zaycev Date: Thu, 23 May 2024 00:54:34 +0700 Subject: [PATCH] Integration tests are disabled from pipelines --- .github/workflows/tests.yml | 2 +- composer.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 90f9b03..c000152 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -93,4 +93,4 @@ jobs: - name: Run tests with Phpunit run: | - XDEBUG_MODE=coverage php vendor/bin/phpunit + XDEBUG_MODE=coverage php vendor/bin/phpunit --testsuite unit diff --git a/composer.json b/composer.json index 99a2fff..c4a74bd 100644 --- a/composer.json +++ b/composer.json @@ -67,8 +67,7 @@ "phplint": "phplint -c .phplint.yml", "phpstan": "phpstan analyse -c phpstan.neon --ansi --xdebug", "test": [ - "@test:unit", - "@test:integration" + "@test:unit" ], "checks": [ "@phplint",