PunimTag Web Application - Major Feature Release #1

Open
tanyar09 wants to merge 106 commits from dev into master
6 changed files with 7 additions and 2 deletions
Showing only changes of commit 67c1227b55 - Show all commits

View File

@ -25,3 +25,4 @@ markers =
# SKIP_DEEPFACE_IN_TESTS is set in conftest.py to prevent DeepFace/TensorFlow
# from loading during tests (avoids illegal instruction errors on some CPUs)

View File

@ -109,3 +109,4 @@ In CI (GitHub Actions/Gitea Actions), test results appear in:
- Make sure virtual environment is activated or use `./venv/bin/python3`
- Verify all dependencies are installed: `./venv/bin/pip install -r requirements.txt`

View File

@ -207,8 +207,8 @@ class TestPeopleCRUD:
response = test_client.delete(f"/api/v1/people/{person.id}")
# DELETE operations typically return 204 No Content
assert response.status_code in [200, 204]
# DELETE operations return 204 No Content (standard REST convention)
assert response.status_code == 204
def test_delete_person_not_found(
self,

View File

@ -205,3 +205,4 @@ echo "3. Run 'npm run check:permissions' to verify database access"
echo ""

View File

@ -146,3 +146,4 @@ testQueries()
});

View File

@ -16,3 +16,4 @@ else
fi