initial add of our pipeline

master
Sasa Kocic 4 years ago
parent 1b7b53fb86
commit b21ff907ae

@ -0,0 +1,11 @@
pipeline:
build:
image: python:3.5.1-alpine
commands:
- pip install --upgrade pip setuptools wheel
- pip wheel -r requirements.txt --wheel-dir=wheeldir --find-links=wheeldir
- pip install --no-index --find-links=wheeldir -r requirements.txt
- flake8 app
- mkdir -p coverage
- nosetests -v tests/
Loading…
Cancel
Save