Skip to content
Snippets Groups Projects
.gitlab-ci.yml 403 B
Newer Older
Jakub Dubec's avatar
Jakub Dubec committed
stages:
  - test

Jakub Dubec's avatar
Jakub Dubec committed
variables:
  PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"

cache:
  paths:
    - .cache/pip
    - venv/

before_script:
  - python3 -V
  - python3 -m venv venv
Jakub Dubec's avatar
Jakub Dubec committed
  - source venv/bin/activate

test:
  script:
    - pip install pytest==5.* pytest-flake8 pipfile-requirements
    - pipfile2req Pipfile.lock > requirements.txt
    - pip install -r requirements.txt
    - pytest . --flake8 -v