This commit is contained in:
Danilo Reyes
2026-02-08 15:00:30 -06:00
parent 4fb24672bf
commit e0aa2b337e

View File

@@ -36,10 +36,14 @@
ruff ruff
]; ];
text = '' text = ''
if [ ! -x ./scripts/mcp-server/run-tests.sh ]; then start_dir="$PWD"
echo "Expected ./scripts/mcp-server/run-tests.sh to be executable from repo root." >&2 while [ ! -x ./scripts/mcp-server/run-tests.sh ]; do
exit 1 if [ "$PWD" = "/" ]; then
fi echo "Could not find executable scripts/mcp-server/run-tests.sh starting from $start_dir" >&2
exit 1
fi
cd ..
done
exec bash ./scripts/mcp-server/run-tests.sh "$@" exec bash ./scripts/mcp-server/run-tests.sh "$@"
''; '';
}; };