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 pytest pytest-asyncio - pip install -r requirements.txt - mkdir techrec/output script: - pytest