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

Update .gitlab-ci.yml

parent 526dd1cf
No related branches found
No related tags found
1 merge request!9Fix ci
Pipeline #10 failed
......@@ -12,23 +12,19 @@ cache:
- venv/
before_script:
- python --version # For debugging
- pip install virtualenv
- virtualenv venv
- source venv/bin/activate
- python3 --version # For debugging
- python3 -m pip install --upgrade pip
test:
script:
- python setup.py test
- python3 setup.py test
- pip install tox flake8 # you can also use tox
- tox -e py36,flake8
run:
script:
- python setup.py bdist_wheel
# an alternative approach is to install and run:
- pip install dist/*
# run the command here
- python3 -m pip install --upgrade build
- python3 -m build
artifacts:
paths:
- dist/*.whl
......
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