Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .archon/workflows/dev-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -535,12 +535,13 @@ nodes:
cd "$REPO/codegraph"
echo "=== Final Gate ==="

# Ensure venv exists (worktrees don't have it)
# Ensure venv exists and deps are current
if [ ! -f .venv/bin/python ]; then
echo "Creating venv..."
python3 -m venv .venv
.venv/bin/pip install -e ".[python,mcp,test]" -q
fi
# Always re-install to pick up any dependency changes from implementation
.venv/bin/pip install -e ".[python,mcp,test]" -q 2>&1

python3 -m compileall codegraph/ -q 2>&1 && echo "PASS: byte-compile" || exit 1
.venv/bin/python -m pytest tests/ -q 2>&1 && echo "PASS: tests" || exit 1
Expand Down
Loading