Add unit tests for backup_first_start and run them in CI
CI / build-and-scan (push) Failing after 40s

This commit is contained in:
Djeex
2026-08-22 11:09:24 +02:00
parent 4753d80891
commit 267d9e52e0
5 changed files with 56 additions and 0 deletions
+7
View File
@@ -36,6 +36,13 @@ jobs:
exit(1)
"
- name: Run unit tests
run: |
docker run --rm -v "$PWD":/app -w /app python:3.13-alpine sh -c "
pip install --no-cache-dir -r requirements-dev.txt &&
pytest -v
"
- name: Check deprecation warnings
run: |
docker run --rm adguard-cidre:ci python -W error::DeprecationWarning -c "import blocklist_scheduler" 2>&1 | tee deprecation.log || true