Skip to content
Snippets Groups Projects
Commit 8d942e99 authored by Niclas Esser's avatar Niclas Esser
Browse files

Update .gitlab-ci.yml file

parent c780a806
No related branches found
No related tags found
1 merge request!2Gitlabci
Pipeline #191403 failed
......@@ -14,7 +14,7 @@ build:
stage: build
image: python:3.9.18-bookworm
script:
- pip install --user .
- pip install .
artifacts:
paths:
- build/
......@@ -23,7 +23,8 @@ unittest:
stage: test
image: python:3.9.18-bookworm
before_script:
- pip install --user coverage
- pip install .
- pip install coverage
script:
- bash run_tests.sh
......@@ -31,7 +32,8 @@ coverage_python:
stage: stats
image: python:3.9.18-bookworm
script:
- pip install --user coverage
- pip install .
- pip install coverage
- coverage xml --include="dbbc/*"
- coverage html --include="dbbc/*"
- coverage report --include="dbbc/*"
......
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