Files
TBank-Backend/docker-compose.test.yml
2025-10-19 22:09:35 +03:00

8 lines
298 B
YAML

services:
web:
user: root # Run as root for tests to allow global package installation
environment:
- PYTHONPATH=/usr/local/lib/python3.11/site-packages
command: bash -c "pip install faker pytest-asyncio pytest-mock && pytest tests/ -v"
volumes:
- ./tests:/code/tests