21 lines
541 B
YAML
21 lines
541 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
before_install:
|
|
# Dependencies to build PIL
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq ubuntu-restricted-extras
|
|
- sudo apt-get install -qq libfreetype6-dev libjpeg8-dev zlib1g-dev ffmpeg
|
|
- sudo locale-gen fr_FR.UTF-8
|
|
install:
|
|
- pip install pytest pytest-cov
|
|
- pip install coveralls
|
|
- pip install .
|
|
script: py.test --cov sigal --cov-report term-missing tests/
|
|
after_success:
|
|
coveralls
|
|
notifications:
|
|
irc: "chat.freenode.net#sigal"
|