forked from JelteF/PyLaTeX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (40 loc) · 828 Bytes
/
.travis.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
sudo: required
dist: trusty
cache: pip
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
# allow failures
- '3.5-dev'
- '3.6-dev'
- 'nightly'
- 'pypy'
- 'pypy3'
matrix:
fast_finish: true
allow_failures:
- python: '3.5-dev'
- python: '3.6-dev'
- python: 'nightly'
- python: 'pypy'
- python: 'pypy3'
addons:
apt:
packages:
- texlive-latex-extra
- texlive-pictures
- texlive-science
- texlive-fonts-recommended
- lmodern
- ghostscript
- pgf
install:
- pip install 3to2 future
- pip install codecov
- 'if [ "$TRAVIS_PYTHON_VERSION" == 3.3 -o "$TRAVIS_PYTHON_VERSION" == 3.4 ]; then pip install -e .[all] --upgrade; else pip install -r dev_requirements.txt --upgrade; fi'
script: ./testall.sh
after_script: codecov