From 28d33ab687bb6895ba05a3b04591a60931b78b67 Mon Sep 17 00:00:00 2001 From: Ne-Lexa Date: Tue, 23 Feb 2021 20:07:37 +0300 Subject: [PATCH] build: run all tests (incl. very slow) --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index abb3ce8..a57645b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -102,12 +102,12 @@ jobs: - name: Run tests with phpunit if: env.PHPUNIT_COVERAGE == 0 - run: vendor/bin/phpunit -v + run: vendor/bin/phpunit -v --testsuite "all_tests" --group small,medium,large - name: Run tests with phpunit and coverage if: env.PHPUNIT_COVERAGE == 1 - run: vendor/bin/phpunit -v --coverage-clover=coverage.clover + run: vendor/bin/phpunit -v --coverage-clover=coverage.clover --testsuite "all_tests" --group small,medium,large - name: Static analysis