Tests include i18n enhancement now

This commit is contained in:
Marcel Huth 2016-07-31 17:59:31 +02:00
parent 3651eddec1
commit c6da147d3e
2 changed files with 8 additions and 1 deletions

View file

@ -4,6 +4,8 @@ python:
- "3.4" - "3.4"
install: install:
- pip install pelican markdown - pip install pelican markdown
before_script:
- git clone https://github.com/getpelican/pelican-plugins plugins
script: pelican -s tests/pelicanconf.py script: pelican -s tests/pelicanconf.py
notifications: notifications:
email: false email: false

View file

@ -3,6 +3,11 @@
from __future__ import unicode_literals from __future__ import unicode_literals
PLUGIN_PATHS = ['plugins']
PLUGINS = ['i18n_subsites']
JINJA_EXTENSIONS = ['jinja2.ext.i18n']
AUTHOR = u'Test' AUTHOR = u'Test'
SITEURL = u'http://localhost:8000' SITEURL = u'http://localhost:8000'
SITENAME = u"Test Blog" SITENAME = u"Test Blog"