We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407f7da commit c900a95Copy full SHA for c900a95
1 file changed
.github/workflows/ci.yml
@@ -65,6 +65,10 @@ jobs:
65
working-directory: backend
66
run: pip install -e ".[dev]"
67
68
+ - name: Install pytest-asyncio
69
+ working-directory: backend
70
+ run: pip install pytest-asyncio>=0.21
71
+
72
- name: Lint backend (ruff)
73
74
run: ruff check .
@@ -75,6 +79,7 @@ jobs:
75
79
DATABASE_URL: postgresql+asyncpg://aaip:aaip_test@localhost:5432/aaip_test
76
80
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
77
81
AAIP_DEV_MODE: "true"
82
+ PYTHONPATH: .
78
83
run: pytest ../tests/backend/ -v --tb=short
84
85
# ─────────────────────────────────────────
0 commit comments