Ananto30/zero

View on GitHub
Dockerfile.test.py39

Summary

Maintainability
Test Coverage
FROM python:3.9-slim

COPY tests/requirements.txt .
RUN pip install -r requirements.txt

COPY zero ./zero
COPY tests ./tests

CMD ["pytest", "tests", "--cov=zero", "--cov-report=term-missing", "-vv"]