diff options
author | Andrey Andreev <narf@devilix.net> | 2022-01-09 08:24:18 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-01-09 08:30:03 +0100 |
commit | 274f2f2acd48595a41416491f95c12300cd906e0 (patch) | |
tree | eafcc1bc6fa2568894cc26ee8e9ed80bf0f00640 /.github/workflows | |
parent | ad57720c57c11620c77181655d637a5bfdbe2643 (diff) |
Set error_reporting=E_ALL for unit tests
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test-phpunit.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/test-phpunit.yml b/.github/workflows/test-phpunit.yml index 3468dfdfb..59fdfc2df 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 |