Skip to content
Snippets Groups Projects
Commit 30fb141e authored by Albin Henriksson's avatar Albin Henriksson
Browse files

#2: Added separate stages for client and server

parent d73836db
No related branches found
No related tags found
2 merge requests!8Issue/2 test front end,!6Issue/2 test front end
This commit is part of merge request !6. Comments created here will be created in the context of that merge request.
stages: stages:
- install - server-install
- test - server-test
- client-install
- client-test
include: include:
- local: .gitlab/server.gitlab-ci.yml - local: .gitlab/server.gitlab-ci.yml
......
...@@ -5,6 +5,7 @@ cache: ...@@ -5,6 +5,7 @@ cache:
- server/env/ - server/env/
before_script: before_script:
stage: server-install
- python --version - python --version
- pip install virtualenv - pip install virtualenv
- cd server/ - cd server/
...@@ -13,6 +14,6 @@ before_script: ...@@ -13,6 +14,6 @@ before_script:
- pip install -r requirements.txt - pip install -r requirements.txt
test-server: test-server:
stage: test stage: server-test
script: script:
- pytest --cov app tests/ - pytest --cov app tests/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment