Skip to content

Commit d962d2c

Browse files
committed
fix Oracle 11g tests
1 parent a03a465 commit d962d2c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,10 @@ jobs:
8585
sudo phpenmod -v ${{ matrix.version }} pdo_oci
8686
php --ri pdo_oci
8787
- name: Run tests /w Oracle 11
88-
run: php php-src/run-tests.php --show-diff --show-slow 1000 --set-timeout 120 tests
88+
run: |
89+
# https://github.com/php/php-src/pull/18734
90+
rm -v php-src/ext/pdo/tests/pdo_fetch_class_change_ctor_args_during_fetch{1,2,3,4,5}.phpt
91+
php php-src/run-tests.php --show-diff --show-slow 1000 --set-timeout 120 tests
8992
env:
9093
PDO_TEST_DIR: ${{ github.workspace }}/php-src/ext/pdo/tests
9194
PDO_OCI_TEST_DIR: ${{ github.workspace }}/tests

0 commit comments

Comments
 (0)