mirror of
https://github.com/laurivosandi/certidude
synced 2024-11-04 20:38:12 +00:00
24 lines
422 B
YAML
24 lines
422 B
YAML
sudo: false
|
|
language: python
|
|
dist: trusty
|
|
python:
|
|
- "2.7"
|
|
after_success:
|
|
- codecov
|
|
virtualenv:
|
|
system_site_packages: true
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install --editable .
|
|
script:
|
|
- py.test && py.test --cov-report xml --cov=certidude tests/
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
addons:
|
|
hostname: buildbot
|
|
apt:
|
|
packages:
|
|
- python-ldap
|
|
# - pip install codecov pytest-cov
|