mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-18 00:57:55 +00:00
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) <noreply@anthropic.com>
This commit is contained in:
parent
45fe8a310e
commit
e97e203d76
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue