mcp server done
Some checks failed
MCP Tests / mcp-tests (pull_request) Failing after 4s

This commit is contained in:
Danilo Reyes
2026-02-01 10:36:54 -06:00
parent ecf058aacf
commit 8946ade5e8
15 changed files with 214 additions and 190 deletions

View File

@@ -6,8 +6,19 @@ set -euo pipefail
here="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$here"
ruff check .
black --check .
fix=false
for arg in "$@"; do
if [ "$arg" = "--fix" ]; then
fix=true
fi
done
if $fix; then
ruff check --fix .
black .
else
ruff check .
black --check .
fi
mypy src
start=$(date +%s)