1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-10 10:04:21 +01:00
pirate-get/wercker.yml
Viktor Stanchev eff089ef0d try wercker
2016-11-05 14:00:50 -07:00

22 lines
541 B
YAML

box: python:3.4-slim
build:
steps:
- install-packages:
packages: git
- script:
name: dependencies
code: |
pip install -r requirements-test.txt
python setup.py install
echo "python version $(python --version) running"
echo "pip version $(pip --version) running"
- script:
name: run tests
code: |
coverage run -m unittest discover
- script:
name: coverage report
code: |
coverage html
coveralls