Skip to content

Commit

Permalink
ci: fix phpunit call
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Nov 13, 2023
1 parent 35329f6 commit 34bb874
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:

- name: PHPUnit
if: matrix.streaming == false
run: vendor/bin/phpunit --verbose --configuration tests/phpunit.xml --coverage-clover=coverage.xml
run: vendor/bin/phpunit --verbose --configuration tests/phpunit.xml --coverage-clover=coverage.xml tests
env:
SABRE_MYSQLUSER: root
SABRE_MYSQLPASS: root
Expand All @@ -118,7 +118,7 @@ jobs:

- name: PHPUnit (with streaming)
if: matrix.streaming == true
run: vendor/bin/phpunit --verbose --configuration tests/phpunit.xml --coverage-clover=coverage.xml
run: vendor/bin/phpunit --verbose --configuration tests/phpunit.xml --coverage-clover=coverage.xml tests
env:
SABRE_MYSQLUSER: root
SABRE_MYSQLPASS: root
Expand Down

0 comments on commit 34bb874

Please sign in to comment.