dosage/.travis.yml

27 lines
565 B
YAML
Raw Normal View History

2013-02-14 20:28:34 +00:00
language: python
python:
- "2.7"
2013-04-30 16:09:42 +00:00
- "3.3"
- "3.4"
- "3.5"
# install libjpeg-dev for Pillow to handle JPEGs
2015-07-17 21:51:17 +00:00
sudo: false
addons:
apt:
packages:
- libjpeg-dev
2013-02-14 20:32:20 +00:00
# command to install dependencies
install:
- pip install -r requirements.txt
2016-03-17 20:12:55 +00:00
- pip install pytest-xdist pytest-cov pytest-travis-fold coveralls
2013-02-14 20:28:34 +00:00
# command to run tests
script: make test PYTESTOPTS="--cov=dosage --cov=dosagelib --tb=short -n10"
after_success:
coveralls
notifications:
irc:
channels:
- "chat.freenode.net#dosage"
use_notice: true
skip_join: true