We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f83508b + f71cbf6 commit cbaab3aCopy full SHA for cbaab3a
.github/workflows/ci.yaml
@@ -146,7 +146,7 @@ jobs:
146
timeout-minutes: 5
147
148
env:
149
- PHP_EXTENSIONS: none, ctype, curl, dom, json, libxml, mbstring, openssl, phar, soap, tokenizer, xml, xmlwriter
+ PHP_EXTENSIONS: none, ctype, curl, dom, json, libxml, mbstring, openssl, pdo, phar, soap, tokenizer, xml, xmlwriter
150
PHP_INI_VALUES: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
151
152
strategy:
@@ -203,7 +203,7 @@ jobs:
203
with:
204
php-version: 8.3
205
coverage: xdebug
206
- extensions: none, ctype, curl, dom, json, libxml, mbstring, phar, soap, tokenizer, xml, xmlwriter
+ extensions: none, ctype, curl, dom, json, libxml, mbstring, pdo, phar, soap, tokenizer, xml, xmlwriter
207
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
208
tools: none
209
tests/end-to-end/regression/5965.phpt
@@ -1,5 +1,10 @@
1
--TEST--
2
https://github.com/sebastianbergmann/phpunit/issues/5965
3
+--SKIPIF--
4
+<?php declare(strict_types=1);
5
+if (!extension_loaded('pdo')) {
6
+ print 'skip: Extension PDO must be loaded.';
7
+}
8
--FILE--
9
<?php declare(strict_types=1);
10
$_SERVER['argv'][] = '--do-not-cache-result';
0 commit comments