pytest and pylint dockerised for Python 3.6
406
Python 3.6 Image with the following tools installed:
Can be used in CI/CD stages as well as locally if you don't want to mess about with pip.
The working directory for the image is /app so is best to run the image like so:
# Run pytest on current directory
docker run -t --rm --name pytest -v "$PWD:/app" davyj0nes/pytest pytest -v
# Run pylint on current directory
docker run -t --rm --name pylint -v "$PWD:/app" davyj0nes/pytest pylint .
Content type
Image
Digest
Size
379.8 MB
Last updated
almost 7 years ago
docker pull davyj0nes/pytest