certidude/.travis.yml

31 lines
568 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 .
- pip install codecov pytest-cov
script:
- py.test --cov-report xml --cov=certidude tests/
cache:
directories:
- $HOME/.cache/pip
addons:
apt:
packages:
- python-xattr
- python-setproctitle
- python-falcon
- python-markdown
- python-jinja2
- python-click
- python-configparser
- python-ipaddress
- python-humanize