Skip to content

Commit

Permalink
We cannot build the documentation with Python 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jokymon committed Sep 8, 2014
1 parent a69b354 commit 4edb471
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ install:

script:
- py.test --cov .
- sh -c 'cd docs && make html'
# According to http://jinja.pocoo.org/docs/dev/intro/ Jinja2 is only
# supported by Python >= 3.3 so don't build the documentation with Python 3.2;
# See also Jinja2 issue #223
- if [[ $TRAVIS_PYTHON_VERSION != '3.2' ]]; then sh -c 'cd docs && make html'; fi
after_success:
coveralls

0 comments on commit 4edb471

Please sign in to comment.