- if [ "$WITH_DOXYGEN" == "ON" ] && [ ! -f $HOME/bin/doxygen ]; then wget "http://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.13.linux.bin.tar.gz" && tar -xzf doxygen-1.8.13.linux.bin.tar.gz && cp doxygen-1.8.13/bin/doxygen $HOME/bin && doxygen -v; fi
script:
- # Test the theme
- - cd $TRAVIS_BUILD_DIR/pelican-theme && coverage run -m unittest && cp .coverage ../.coverage.theme
+ # Test the theme. No code coverage there.
+ - cd $TRAVIS_BUILD_DIR/pelican-theme && python -m unittest
# Test plugins. Math plugin is not tested as dvisvgm on 14.04 is unusable.
- cd $TRAVIS_BUILD_DIR/pelican-plugins && coverage run -m unittest && cp .coverage ../.coverage.plugins