AgentIC / scripts /ci /smoke.sh
vxkyyy's picture
fix: CI smoke test — add tests/__init__.py, fix discovery pattern to test_*.py
2fe820a
#!/usr/bin/env bash
set -euo pipefail
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
cd "$REPO_ROOT"
python3 -m compileall -q src/agentic
python3 -m unittest discover -s tests -p 'test_*.py'