File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -123,6 +123,19 @@ jobs:
123123 ignore-cache : " yes"
124124 composer-options : " --optimize-autoloader"
125125
126+ - name : Diagnose PHPUnit startup under Turso
127+ continue-on-error : true
128+ env :
129+ LD_PRELOAD : ${{ steps.turso-lib.outputs.path }}
130+ working-directory : packages/mysql-on-sqlite
131+ run : |
132+ echo '--- phpunit --version ---'
133+ php ./vendor/bin/phpunit --version; echo "exit=$?"
134+ echo '--- phpunit --list-tests (first 5 lines) ---'
135+ php ./vendor/bin/phpunit -c ./phpunit.xml.dist --list-tests 2>&1 | head -5; echo "exit=${PIPESTATUS[0]}"
136+ echo '--- standalone bootstrap ---'
137+ php -r 'require __DIR__ . "/tests/bootstrap.php"; echo "bootstrap ok\n";'; echo "exit=$?"
138+
126139 - name : Run PHPUnit tests against Turso DB
127140 continue-on-error : true
128141 env :
You can’t perform that action at this time.
0 commit comments