You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix serena-mcp-server test.sh to properly verify language runtimes
The test script was failing because the container has an ENTRYPOINT set to
'serena-mcp-server', causing commands like 'go version' to be interpreted
as arguments to serena-mcp-server rather than executing the go command.
Fixed by adding --entrypoint flag to all language runtime verification tests:
- Python: Use --entrypoint python3
- Java: Use --entrypoint java
- Node.js: Use --entrypoint node
- Go: Use --entrypoint go
- Language servers: Use --entrypoint sh for shell commands
All tests now pass successfully.
Co-authored-by: lpcox <15877973+lpcox@users.noreply.github.com>
0 commit comments