1
0
mirror of https://github.com/vikstrous/pirate-get synced 2025-01-10 10:04:21 +01:00
pirate-get/circle.yml
Viktor Stanchev 8111eadd20 add coveralls
2015-09-11 22:42:51 -07:00

16 lines
401 B
YAML

machine:
python:
version: 3.4.2
dependencies:
override:
- pip install -r requirements-test.txt
- python setup.py install
test:
override:
- coverage run -m unittest discover
post:
- mkdir -p $CIRCLE_ARTIFACTS/coverage
- cd /home/ubuntu/pirate-get && coverage html --include=`pwd`*
- cp -R /home/ubuntu/pirate-get/htmlcov/* $CIRCLE_ARTIFACTS/coverage
- coveralls