Skip to content
Snippets Groups Projects
Commit fb69e798 authored by Tamas Kiss's avatar Tamas Kiss
Browse files

Gitlab CI added

parent f0a31d43
No related branches found
No related tags found
No related merge requests found
Pipeline #4231 failed
image: registry.kszk.bme.hu/baseimg/python-tools
stages:
- Init
- Testing
- Release
pip:
stage: Init
script:
- python --version
- pip install -e .
flake8:
stage: Testing
script:
- flake8 src
pytest:
stage: Testing
script:
- pip install .[tests]
- py.test tests
release:
only:
- master
- tags
stage: Release
script:
- python setup.py sdist bdist_wheel
- python setup.py upload --repository https://nexus.kszk.bme.hu/repository/pypi/
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment