diff --git a/.travis.yml b/.travis.yml index 89d08e2..863327a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ python: - "3.4" install: - pip install pelican markdown +before_script: + - git clone https://github.com/getpelican/pelican-plugins plugins script: pelican -s tests/pelicanconf.py notifications: - email: false \ No newline at end of file + email: false diff --git a/tests/pelicanconf.py b/tests/pelicanconf.py index c20b871..f98420b 100644 --- a/tests/pelicanconf.py +++ b/tests/pelicanconf.py @@ -3,6 +3,11 @@ from __future__ import unicode_literals +PLUGIN_PATHS = ['plugins'] +PLUGINS = ['i18n_subsites'] + +JINJA_EXTENSIONS = ['jinja2.ext.i18n'] + AUTHOR = u'Test' SITEURL = u'http://localhost:8000' SITENAME = u"Test Blog"