mirror of
https://github.com/vikstrous/pirate-get
synced 2025-01-09 09:59:51 +01:00
16 lines
401 B
YAML
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
|