summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2022-01-09 08:24:18 +0100
committerAndrey Andreev <narf@devilix.net>2022-01-09 08:24:18 +0100
commitd314be05ec50dace2cd8dc94b81e285208bc3a76 (patch)
tree2817064f78291614ceb7410edb3d997e293e1be8
parenta97bd305c0c22addc79cb691f5f84f874e633805 (diff)
Set error_reporting=E_ALL for unit tests
-rw-r--r--.github/workflows/test-phpunit.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test-phpunit.yml b/.github/workflows/test-phpunit.yml
index a0765e883..e5ad97a44 100644
--- a/.github/workflows/test-phpunit.yml
+++ b/.github/workflows/test-phpunit.yml
@@ -114,6 +114,6 @@ jobs:
- name: PHPUnit Test
run: |
- php -d zend.enable_gc=0 -d date.timezone=UTC -d mbstring.func_overload=7 -d mbstring.internal_encoding=UTF-8 vendor/bin/phpunit --coverage-text --configuration tests/travis/${{ matrix.DB }}.phpunit.xml
+ php -d error_reporting=E_ALL -d zend.enable_gc=0 -d date.timezone=UTC -d mbstring.func_overload=7 -d mbstring.internal_encoding=UTF-8 vendor/bin/phpunit --coverage-text --configuration tests/travis/${{ matrix.DB }}.phpunit.xml
env:
XDEBUG_MODE: coverage