Skip to content

Commit 1d0c250

Browse files
committed
Use testdox
1 parent 52dea77 commit 1d0c250

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: Linting all php files
6060
run: find src/ tests/ public/ -name ''*.php'' -print0 | xargs -0 -n 1 -P 4 php -l; php -l bin/*;
6161
- name: Run units tests with phpunit
62-
run: vendor/bin/phpunit tests/Unit/
62+
run: vendor/bin/phpunit tests/Unit/ --testdox
6363
- name: Run integration tests with phpunit
6464
run: |
6565
export PHPLIST_DATABASE_NAME=${{ env.DB_DATABASE }}
@@ -69,7 +69,7 @@ jobs:
6969
export PHPLIST_DATABASE_HOST=127.0.0.1
7070
vendor/bin/phpunit tests/Integration/
7171
- name: Running the system tests
72-
run: vendor/bin/phpunit tests/System/;
72+
run: vendor/bin/phpunit tests/System/ --testdox;
7373
- name: Running static analysis
7474
run: vendor/bin/phpstan analyse -c phpstan.neon;
7575
- name: Running PHPMD

0 commit comments

Comments
 (0)