image: python:3.7 stages: - static - test mypy: stage: static before_script: - pip install mypy script: - mypy techrec test: stage: test before_script: - pip install nose - pip install -r requirements.txt script: - nosetests