2012-03-11 17:05:59 +01:00
|
|
|
language: python
|
|
|
|
|
python:
|
|
|
|
|
- "2.7"
|
2013-01-15 14:23:00 +01:00
|
|
|
- "3.2"
|
2012-11-20 00:22:18 +01:00
|
|
|
before_install:
|
|
|
|
|
- sudo apt-get update -qq
|
|
|
|
|
- sudo apt-get install -qq ruby-sass
|
2012-03-11 17:05:59 +01:00
|
|
|
install:
|
2013-01-11 02:57:43 +01:00
|
|
|
- pip install nose mock --use-mirrors
|
2013-01-19 16:44:12 +01:00
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install --use-mirrors unittest2; else pip install --use-mirrors unittest2py3k; fi
|
2012-03-11 17:05:59 +01:00
|
|
|
- pip install . --use-mirrors
|
2012-04-01 03:22:53 +02:00
|
|
|
- pip install Markdown
|
2012-11-20 00:22:18 +01:00
|
|
|
- pip install webassets
|
|
|
|
|
- pip install cssmin
|
2012-03-11 17:05:59 +01:00
|
|
|
script: nosetests -s tests
|
2012-03-16 20:56:00 +01:00
|
|
|
notifications:
|
2012-03-16 21:23:34 +01:00
|
|
|
irc:
|
2012-11-20 00:22:18 +01:00
|
|
|
channels:
|
2012-03-16 21:23:34 +01:00
|
|
|
- "irc.freenode.org#pelican"
|
|
|
|
|
on_success: change
|