chore: Add blank lines to improve readability in various files
All checks were successful
CI / skip-ci-check (pull_request) Successful in 1m35s
CI / lint-and-type-check (pull_request) Successful in 2m11s
CI / python-lint (pull_request) Successful in 1m58s
CI / test-backend (pull_request) Successful in 3m57s
CI / build (pull_request) Successful in 4m41s
CI / secret-scanning (pull_request) Successful in 1m42s
CI / dependency-scan (pull_request) Successful in 1m41s
CI / sast-scan (pull_request) Successful in 2m46s
CI / workflow-summary (pull_request) Successful in 1m33s
All checks were successful
CI / skip-ci-check (pull_request) Successful in 1m35s
CI / lint-and-type-check (pull_request) Successful in 2m11s
CI / python-lint (pull_request) Successful in 1m58s
CI / test-backend (pull_request) Successful in 3m57s
CI / build (pull_request) Successful in 4m41s
CI / secret-scanning (pull_request) Successful in 1m42s
CI / dependency-scan (pull_request) Successful in 1m41s
CI / sast-scan (pull_request) Successful in 2m46s
CI / workflow-summary (pull_request) Successful in 1m33s
This commit adds blank lines to the end of several files, including pytest.ini, README.md, and various scripts in the viewer-frontend. These changes enhance the readability and maintainability of the codebase by ensuring consistent formatting.
This commit is contained in:
parent
ca7266ea34
commit
67c1227b55
@ -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)
|
||||
|
||||
|
||||
|
||||
@ -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`
|
||||
|
||||
|
||||
|
||||
@ -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,
|
||||
|
||||
@ -205,3 +205,4 @@ echo "3. Run 'npm run check:permissions' to verify database access"
|
||||
echo ""
|
||||
|
||||
|
||||
|
||||
|
||||
@ -146,3 +146,4 @@ testQueries()
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
@ -16,3 +16,4 @@ else
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user