Tests include i18n enhancement now
This commit is contained in:
parent
3651eddec1
commit
c6da147d3e
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue