2016-09-18 14:39:27 +00:00
|
|
|
sudo: false
|
2015-09-09 05:46:01 +00:00
|
|
|
language: python
|
2016-03-27 21:00:41 +00:00
|
|
|
dist: trusty
|
2015-09-09 05:46:01 +00:00
|
|
|
python:
|
2016-03-27 21:00:41 +00:00
|
|
|
- "2.7"
|
2015-10-08 10:46:12 +00:00
|
|
|
after_success:
|
|
|
|
- codecov
|
2016-03-27 21:00:41 +00:00
|
|
|
virtualenv:
|
|
|
|
system_site_packages: true
|
2015-09-09 05:46:01 +00:00
|
|
|
install:
|
|
|
|
- pip install -r requirements.txt
|
|
|
|
- pip install --editable .
|
2016-09-18 15:52:51 +00:00
|
|
|
- pip install codecov pytest-cov
|
2015-10-08 10:46:12 +00:00
|
|
|
script:
|
2017-03-13 15:31:32 +00:00
|
|
|
- py.test --cov-report xml --cov=certidude tests/
|
2015-09-29 12:38:06 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.cache/pip
|
2016-09-18 15:30:31 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- python-ldap
|