aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 022258b023d38fc9df645661d5cf3e7c9fe469be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
branches:
  except:
    - master
language: python
python:
  - "3.4"
  - "3.5"
matrix:
  allow_failures:
    - python: "nightly"
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