From 5723c3f2d560768ca9f6831e2cd75dedc9659a25 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 21 Apr 2026 08:12:13 +0000 Subject: [PATCH 1/2] Initial plan From abbfff5d367797e4769676316665b0449466a74f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 21 Apr 2026 08:14:32 +0000 Subject: [PATCH 2/2] Remove sqlite from continue-on-error condition in reusable-functional.yml Agent-Logs-Url: https://github.com/wp-cli/.github/sessions/c2338a32-1f4d-4bcf-aa76-a498a247f1b4 Co-authored-by: swissspidy <841956+swissspidy@users.noreply.github.com> --- .github/workflows/reusable-functional.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-functional.yml b/.github/workflows/reusable-functional.yml index f564dfd..71b3bcc 100644 --- a/.github/workflows/reusable-functional.yml +++ b/.github/workflows/reusable-functional.yml @@ -37,7 +37,7 @@ jobs: name: Behat | PHP ${{ inputs.php }} | WP ${{ inputs.wp }} | ${{ inputs.dbtype == 'sqlite' && 'SQLite' || inputs.dbtype == 'mariadb' && 'MariaDB' || 'MySQL' }}${{ inputs.object_cache == 'sqlite' && ' (Obj Cache)' || '' }}${{ inputs.coverage && ' (with coverage)' || '' }}${{ startsWith( inputs.os, 'windows' ) && ' (Windows)' || '' }}${{ startsWith( inputs.os, 'macos' ) && ' (macOS)' || '' }} runs-on: ${{ inputs.os || 'ubuntu-22.04' }} - continue-on-error: ${{ inputs.dbtype == 'sqlite' || inputs.dbtype == 'mariadb' || inputs.php == 'nightly' || startsWith( inputs.os, 'windows' ) || startsWith( inputs.os, 'macos' ) }} + continue-on-error: ${{ inputs.dbtype == 'mariadb' || inputs.php == 'nightly' || startsWith( inputs.os, 'windows' ) || startsWith( inputs.os, 'macos' ) }} env: MYSQL_HOST: 127.0.0.1