dosage/.travis.yml

28 lines
468 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"
2017-01-12 00:38:59 +00:00
- "3.6"
2016-05-21 14:06:11 +00:00
cache: pip
# 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:
2016-10-15 19:19:45 +00:00
- pip install -U tox-travis coveralls setuptools
2013-02-14 20:28:34 +00:00
# command to run tests
2016-03-20 18:43:48 +00:00
script: tox
after_success:
coveralls
notifications:
irc:
channels:
- "chat.freenode.net#dosage"
use_notice: true
skip_join: true