Skip to content
Snippets Groups Projects

Resolve "Improve gitlab pipelines"

Merged Victor Löfgren requested to merge issue/5-improve-gitlab-pipelines into dev
2 files
+ 17
7
Compare changes
  • Side-by-side
  • Inline
Files
2
  • 3b977857
    #5: Test artifacts for server test · 3b977857
    Victor Löfgren authored
test-server:
server-setup:
image: python
cache:
stage: setup
artifacts:
paths:
- server/env/
stage: server-test
- server/env
expire_in: 15 min
untracked: true
script:
- python --version
- pip install virtualenv
@@ -13,4 +13,13 @@ test-server:
- python -m venv env
- source env/bin/activate
- pip install -r requirements.txt
server-test:
image: python
stage: test
dependencies:
- server-setup
script:
- cd server
- source env/bin/activate
- pytest --cov app tests/
Loading