We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b40f0 commit 3ffb74aCopy full SHA for 3ffb74a
3 files changed
.github/workflows/python-app.yml
@@ -27,3 +27,8 @@ jobs:
27
run: pipx install ruff
28
- name: Lint code with Ruff
29
run: ruff check --output-format=github --target-version=py39
30
+ - name: Install test dependencies
31
+ run: pip install -r server/requirements.txt
32
+ # Discover and run all files matching test_*.py or *_test.py under server/
33
+ - name: Run tests
34
+ run: pytest server/ -v
server/pytest.ini
@@ -0,0 +1,3 @@
1
+[pytest]
2
+DJANGO_SETTINGS_MODULE = balancer_backend.settings
3
+pythonpath = .
server/requirements.txt
@@ -18,4 +18,6 @@ sentence_transformers
18
PyMuPDF==1.24.0
19
Pillow
20
pytesseract
21
-anthropic
+anthropic
22
+pytest
23
+pytest-django
0 commit comments