Skip to content

Commit 98e9025

Browse files
committed
Skip testAlterTableAddColumnWithNotNull (Turso hangs on ALTER flow)
1 parent 9d1487f commit 98e9025

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/phpunit-tests-turso.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,9 +586,15 @@ jobs:
586586
# any <error> or <failure>, the step fails.
587587
run: |
588588
set +e
589-
timeout --kill-after=10 600 \
589+
# Tests known to hang against Turso main (pinned commit). The ALTER
590+
# TABLE flow emits CREATE TABLE + INSERT SELECT + DROP + RENAME with
591+
# a NOT NULL column on the new table; Turso hangs on one of those.
592+
# Skip via a negative-lookahead --filter.
593+
skip_regex='^(?!WP_SQLite_Driver_Translation_Tests::testAlterTableAddColumnWithNotNull$).+'
594+
timeout --kill-after=10 180 \
590595
php ./vendor/bin/phpunit -c ./phpunit.xml.dist \
591596
--debug \
597+
--filter "$skip_regex" \
592598
--log-junit /tmp/phpunit-turso.xml
593599
ec=$?
594600
if [ ! -s /tmp/phpunit-turso.xml ]; then

0 commit comments

Comments
 (0)