certidude/.travis.yml

23 lines
383 B
YAML
Raw Normal View History

2015-09-09 05:46:01 +00:00
sudo: false
language: python
python:
#- "2.6"
#- "2.7"
#- "3.2"
- "3.3"
- "3.4"
2015-09-29 12:21:52 +00:00
- "3.5"
2015-10-08 10:46:12 +00:00
after_success:
- codecov
before_install:
# codecov.io
- pip install codecov pytest-cov
2015-09-09 05:46:01 +00:00
install:
- pip install -r requirements.txt
- pip install --editable .
2015-10-08 10:46:12 +00:00
script:
- py.test && py.test --cov-report xml --cov=certidude tests/
2015-09-29 12:38:06 +00:00
cache:
directories:
- $HOME/.cache/pip