1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/backend/Dockerfile.test
MoonTestUse1 ef548e3dfd dip test
2025-02-02 03:54:29 +06:00

14 lines
447 B
Docker

FROM python:3.9
WORKDIR /app
# Устанавливаем зависимости
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install pytest pytest-asyncio pytest-cov
# Копируем код приложения
COPY . .
# Ждем доступности базы данных и запускаем тесты
CMD ["sh", "-c", "while ! nc -z test-db 5432; do sleep 1; done; pytest tests/ -v --cov=app"]