feat: Création de tests unitaires pour le back[#63]

This commit is contained in:
N3WT DE COMPET
2025-06-05 16:31:07 +02:00
parent 0064b8d35a
commit 5f0866fd15
11 changed files with 291 additions and 1 deletions

View File

@ -36,6 +36,20 @@ services:
- database
command: python start.py
backend-test:
build:
context: ./Back-End
volumes:
- ./Back-End:/Back-End
env_file: "./conf/backend.env"
links:
- "database:database"
- "redis:redis"
depends_on:
- redis
- database
command: python manage.py test
volumes:
postgres-data:
redis-data: