2012-03-11 17:05:59 +01:00
|
|
|
language: python
|
|
|
|
|
python:
|
|
|
|
|
- "2.7"
|
2013-05-26 12:44:32 +02:00
|
|
|
- "3.3"
|
2014-04-30 06:44:55 -07:00
|
|
|
- "3.4"
|
2012-11-20 00:22:18 +01:00
|
|
|
before_install:
|
|
|
|
|
- sudo apt-get update -qq
|
2013-04-22 20:00:27 -04:00
|
|
|
- sudo locale-gen fr_FR.UTF-8 tr_TR.UTF-8
|
2012-03-11 17:05:59 +01:00
|
|
|
install:
|
2013-06-16 08:53:45 -07:00
|
|
|
- pip install .
|
2014-01-10 07:33:41 +00:00
|
|
|
- pip install -r dev_requirements.txt
|
|
|
|
|
- pip install nose-cov
|
2013-08-12 14:49:25 +02:00
|
|
|
script: nosetests -sv --with-coverage --cover-package=pelican pelican
|
|
|
|
|
after_success:
|
|
|
|
|
# Report coverage results to coveralls.io
|
|
|
|
|
- pip install coveralls
|
|
|
|
|
- coveralls
|
2013-08-17 01:23:09 +02:00
|
|
|
notifications:
|
|
|
|
|
irc:
|
|
|
|
|
channels:
|
|
|
|
|
- "irc.freenode.org#pelican"
|
|
|
|
|
on_success: change
|