We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d1487f commit 98e9025Copy full SHA for 98e9025
1 file changed
.github/workflows/phpunit-tests-turso.yml
@@ -586,9 +586,15 @@ jobs:
586
# any <error> or <failure>, the step fails.
587
run: |
588
set +e
589
- timeout --kill-after=10 600 \
+ # 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 \
595
php ./vendor/bin/phpunit -c ./phpunit.xml.dist \
596
--debug \
597
+ --filter "$skip_regex" \
598
--log-junit /tmp/phpunit-turso.xml
599
ec=$?
600
if [ ! -s /tmp/phpunit-turso.xml ]; then
0 commit comments