Skip to content
Snippets Groups Projects

Issue/3 test back end

Merged Victor Löfgren requested to merge issue/3-test-back-end into dev
8 files
+ 88
74
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 18
0
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/
Loading