dosage/.travis.yml

29 lines
476 B
YAML
Raw Normal View History

2013-02-14 21:28:34 +01:00
language: python
python:
- "2.7"
2013-04-30 18:09:42 +02:00
- "3.3"
- "3.4"
- "3.5"
2016-03-20 20:32:08 +01:00
cache:
directories:
$HOME/.cache/pip
# install libjpeg-dev for Pillow to handle JPEGs
2015-07-17 23:51:17 +02:00
sudo: false
addons:
apt:
packages:
- libjpeg-dev
2013-02-14 21:32:20 +01:00
# command to install dependencies
install:
- pip install tox-travis coveralls
2013-02-14 21:28:34 +01:00
# command to run tests
2016-03-20 19:43:48 +01:00
script: tox
after_success:
coveralls
notifications:
irc:
channels:
- "chat.freenode.net#dosage"
use_notice: true
skip_join: true