dosage/.travis.yml

24 lines
557 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"
# install libjpeg-dev for Pillow to handle JPEGs
2013-12-09 19:00:47 +01:00
before_install:
2014-02-10 22:22:20 +01:00
- sudo apt-get update -q -y
- sudo apt-get install -q -y libjpeg-dev
2014-03-04 20:24:51 +01:00
# disabled upgrade: it gives build errors
# - sudo apt-get upgrade -q -y
2013-02-14 21:32:20 +01:00
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install pytest-xdist
2013-02-14 21:28:34 +01:00
# command to run tests
2013-03-27 19:59:37 +01:00
script: make test PYTESTOPTS="--tb=short -n10"
notifications:
irc:
channels:
- "chat.freenode.net#dosage"
use_notice: true
skip_join: true