8 lines
298 B
YAML
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 |