Skip to content

Commit cbaab3a

Browse files
Merge branch '11.3'
2 parents f83508b + f71cbf6 commit cbaab3a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
timeout-minutes: 5
147147

148148
env:
149-
PHP_EXTENSIONS: none, ctype, curl, dom, json, libxml, mbstring, openssl, phar, soap, tokenizer, xml, xmlwriter
149+
PHP_EXTENSIONS: none, ctype, curl, dom, json, libxml, mbstring, openssl, pdo, phar, soap, tokenizer, xml, xmlwriter
150150
PHP_INI_VALUES: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
151151

152152
strategy:
@@ -203,7 +203,7 @@ jobs:
203203
with:
204204
php-version: 8.3
205205
coverage: xdebug
206-
extensions: none, ctype, curl, dom, json, libxml, mbstring, phar, soap, tokenizer, xml, xmlwriter
206+
extensions: none, ctype, curl, dom, json, libxml, mbstring, pdo, phar, soap, tokenizer, xml, xmlwriter
207207
ini-values: assert.exception=1, zend.assertions=1, error_reporting=-1, log_errors_max_len=0, display_errors=On
208208
tools: none
209209

tests/end-to-end/regression/5965.phpt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
--TEST--
22
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+
}
38
--FILE--
49
<?php declare(strict_types=1);
510
$_SERVER['argv'][] = '--do-not-cache-result';

0 commit comments

Comments
 (0)