Skip to content
Snippets Groups Projects
Commit 2f330ec7 authored by Christoph Knote's avatar Christoph Knote
Browse files

Update .gitlab-ci.yml

parent 4f7e60f6
No related branches found
No related tags found
1 merge request!9Fix ci
Pipeline #14 passed
......@@ -9,18 +9,23 @@ variables:
cache:
paths:
- .cache/pip
- venv/
before_script:
- python3 --version # For debugging
- python3 --version
- python3 -m pip install --upgrade pip
- pip3 install virtualenv
- virtualenv venv
- source venv/bin/activate
- python3 -m pip install --upgrade numpy
- python3 -m pip install --upgrade coverage
test:
script:
- python3 -m pip install --upgrade numpy # stupid - can't we read this out of the package requirements? Or install first, then test?
- python3 -m pip install --upgrade coverage
- python3 -m pip install -e .
- make
run:
build_package:
script:
- python3 -m pip install --upgrade build
- python3 -m build
......
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