From 99a1e1f3fb1c6dd38f0ce77e245e80ff839c12b5 Mon Sep 17 00:00:00 2001 From: John McLear Date: Tue, 31 Mar 2026 00:51:37 +0100 Subject: [PATCH] Fix backend-tests find pattern for versioned plugin paths 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 9adf2740b5b..6031120ed49 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