1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-10-05 16:37:47 +03:00
WeasyPrint/.travis.yml
Guillaume Ayoub 6d8417d6da Fix the link used to download Ahem
The w3.org servers like to reject Travis' requests.
2016-02-26 17:57:53 +01:00

21 lines
346 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
addons:
apt:
packages:
- ttf-dejavu
install:
- pip install pytest flake8 -e .
- mkdir -p ~/.fonts
- wget "https://github.com/Kozea/Ahem/blob/master/Ahem.ttf?raw=true" -O ~/.fonts/Ahem.ttf
script:
- py.test -s
- flake8 weasyprint
sudo: false