Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
server.gitlab-ci.yml 283 B
image: python

cache:
  paths:
    - server/env/

before_script:
  - python --version
  - pip install virtualenv
  - cd server/
  - python -m venv env
  - source env/bin/activate
  - pip install -r requirements.txt

test-server:
  stage: test
  script:
    - pytest --cov app tests/