feat(registry): add new endpoints for registers, exchange, and backups; update routing and configurations
Some checks failed
CI/CD Pipeline / Code Quality Checks (push) Failing after 3m10s
CI/CD Pipeline / Run Tests (push) Successful in 3m35s
CI/CD Pipeline / Telegram Notify Success (push) Has been skipped
CI/CD Pipeline / Code Quality Checks (pull_request) Failing after 2m26s
CI/CD Pipeline / Run Tests (pull_request) Successful in 2m46s
CI/CD Pipeline / Telegram Notify Success (pull_request) Has been skipped

This commit is contained in:
2026-03-04 15:36:57 +01:00
parent 052389d921
commit a91ed1f1ae
90 changed files with 5488 additions and 622 deletions

17
scripts/run-tests-prod.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
# Production-like Django test runner (PostgreSQL + migrations)
set -euo pipefail
cd "$(dirname "$0")/../src" || exit 1
export PYTHONPATH=.
export DJANGO_SETTINGS_MODULE=settings.test_postgres
COMMON_ADDOPTS="--verbose --tb=short --reuse-db --strict-markers --strict-config --color=yes"
if [ "$#" -eq 0 ]; then
uv run pytest ../tests --migrations -o "addopts=${COMMON_ADDOPTS}"
else
uv run pytest "$@" --migrations -o "addopts=${COMMON_ADDOPTS}"
fi