From e97e203d76c30b55b5eb090ed2b56e2ba02d83ea Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 31 Mar 2026 00:52:44 +0100 Subject: [PATCH] Fix backend-tests find pattern for versioned plugin paths (#7398) live-plugin-manager installs to src/plugin_packages/ep_name@version/, not src/plugin_packages/ep_name/. Update the glob to match the versioned directory format. Co-authored-by: Claude Opus 4.6 (1M context) --- bin/plugins/lib/backend-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/plugins/lib/backend-tests.yml b/bin/plugins/lib/backend-tests.yml index 9adf2740b..6031120ed 100644 --- a/bin/plugins/lib/backend-tests.yml +++ b/bin/plugins/lib/backend-tests.yml @@ -62,7 +62,7 @@ jobs: name: Run the backend tests working-directory: ./etherpad-lite run: | - res=$(find . -path "./src/plugin_packages/ep_*/static/tests/backend/specs/**" | wc -l) + res=$(find . -path "./src/plugin_packages/ep_*@*/static/tests/backend/specs/**" | wc -l) if [ $res -eq 0 ]; then echo "No backend tests found" else