image: python:latest cache: paths: - ~/.cache/pip/ before_script: - python -V # Print out python version for debugging - pip install -r requirements.txt -r requirements-dev.txt test: script: - make flake - make coverage