소스 검색

build: run all tests (incl. very slow)

Ne-Lexa 5 년 전
부모
커밋
28d33ab687
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .github/workflows/build.yml

+ 2 - 2
.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