1
1
mirror of https://github.com/Kozea/WeasyPrint.git synced 2024-10-05 16:37:47 +03:00
WeasyPrint/.travis.yml

20 lines
363 B
YAML
Raw Normal View History

language: python
python:
- "2.7"
- "3.3"
2014-06-25 08:21:28 +04:00
- "3.4"
2015-11-21 02:42:44 +03:00
- "3.5"
addons:
apt:
packages:
- ttf-dejavu
install:
2016-07-15 19:00:16 +03:00
- pip install --upgrade setuptools
- 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