test temp dir
Some checks failed
MCP Tests / mcp-tests (push) Failing after 6s

This commit is contained in:
Danilo Reyes
2026-02-08 14:59:03 -06:00
parent 81318b3fb1
commit 4fb24672bf
2 changed files with 12 additions and 1 deletions

View File

@@ -36,7 +36,11 @@
ruff
];
text = ''
exec bash ${inputs.self}/scripts/mcp-server/run-tests.sh "$@"
if [ ! -x ./scripts/mcp-server/run-tests.sh ]; then
echo "Expected ./scripts/mcp-server/run-tests.sh to be executable from repo root." >&2
exit 1
fi
exec bash ./scripts/mcp-server/run-tests.sh "$@"
'';
};
in