Skip to content
Snippets Groups Projects
Commit 41ed5e64 authored by Tim Repke's avatar Tim Repke
Browse files

add venv activate to gitlab ci

parent 9315b36b
No related branches found
No related tags found
No related merge requests found
Pipeline #708 failed
......@@ -24,26 +24,28 @@ cache:
- venv/
build-job:
stage: build
script:
- python -V
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
- pwd
- ls -lisah
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
stage: build
script:
- python -V
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
- pwd
- ls -lisah
- pip install -r requirements.txt
- pip install -r requirements_dev.txt
test-job1:
stage: test
script:
- flake8
stage: test
script:
- source venv/bin/activate
- flake8
test-job2:
stage: test
script:
- mypy --config-file=pyproject.toml server
stage: test
script:
- source venv/bin/activate
- mypy --config-file=pyproject.toml server
#pages:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment