CodeLens / docker-compose.test.yml
ArshVerma's picture
feat: finalize CodeLens. production suite (Docker, CI/CD, Documentation)
4b66647
Raw
History Blame Contribute Delete
345 Bytes
version: "3.9"
services:
test:
build:
context: .
target: builder
container_name: codelens-test
command: >
sh -c "/build/venv/bin/pip install pytest pytest-cov &&
PYTHONPATH=/app /build/venv/bin/python -m pytest tests/ -v --tb=short"
volumes:
- .:/app
environment:
- APP_ENV=test