image: python:alpine test:pylama: stage: test only: - master - develop before_script: - pip install -r requirements.txt script: pylama . test:pytest: stage: test only: - master - develop before_script: - pip install -r requirements.txt script: pytest .