shlax/.gitlab-ci.yml
2020-01-25 16:52:37 +01:00

16 lines
246 B
YAML

qa:
stage: test
image: yourlabs/python
script: flake8 podctl
test:
stage: test
image: yourlabs/python
script: pip install -e . && py.test -v tests
pypi:
stage: deploy
image: yourlabs/python
script: pypi-release
only: [tags]