branches: except: - master language: python python: - "3.4" - "3.5" before_install: - sudo add-apt-repository -y ppa:kalakris/cmake - sudo apt-get update - sudo apt-get install -y cmake # install pandoc - wget https://github.com/jgm/pandoc/releases/download/1.13.2/pandoc-1.13.2-1-amd64.deb - sudo dpkg -i pandoc-1.13.2-1-amd64.deb # install tidy-html5 - git clone https://github.com/htacg/tidy-html5.git - cd tidy-html5/build/cmake - cmake ../.. - make - sudo make install - cd ../../.. install: - pip install -r requirements.txt script: - python pyblog generate - find build -name '*.html' -print0 | while IFS= read -r -d '' file; do tidy -q -e "$file"; done