feat: Update test configurations and add smoke tests for named view routes

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Ross
2026-04-30 22:35:11 +01:00
co-authored by Copilot
parent d12933e62a
commit 26a73d1d3b
5 changed files with 179 additions and 5 deletions
+10 -2
View File
@@ -14,13 +14,21 @@ services:
POSTGRES_USER: ${POSTGRES_USER:-django}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres}
POSTGRES_DB: ${POSTGRES_DB:-rad}
ports:
- "5432:5432"
volumes:
- postgres_test_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL","pg_isready -U ${POSTGRES_USER:-django}" ]
interval: 10s
interval: 5s
timeout: 5s
retries: 5
retries: 10
networks:
- test_net
networks:
test_net:
name: rad_test_net
volumes:
postgres_test_data: