-
Notifications
You must be signed in to change notification settings - Fork 43
/
.travis.yml
81 lines (56 loc) · 1.41 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
language: python
git:
# Testing doesn't need Flask themes.
submodules: false
matrix:
include:
# 3
- python: "3.7"
env: FLASK_VERSION=""
os: linux
- python: "3.7"
env: FLASK_VERSION="==1.0"
os: linux
- python: "3.7"
env: FLASK_VERSION="==0.10"
os: linux
# 2
- python: "2.7"
env: FLASK_VERSION=""
os: linux
- python: "2.7"
env: FLASK_VERSION="==1.0"
os: linux
- python: "2.7"
env: FLASK_VERSION="==0.10"
os: linux
- python: "2.7"
env: FLASK_VERSION="==0.9"
os: linux
# PyPy.
- python: "pypy"
env: FLASK_VERSION=""
os: linux
- python: "pypy"
env: FLASK_VERSION="==0.10"
os: linux
# Older 3s.
- python: "3.6"
env: FLASK_VERSION=""
os: linux
- python: "3.5"
env: FLASK_VERSION=""
os: linux
- python: "3.4"
env: FLASK_VERSION=""
os: linux
before_install:
- sudo apt-get install libjpeg8 libjpeg8-dev libfreetype6 libfreetype6-dev zlib1g-dev tree
- sudo ln -s /usr/lib/`uname -i`-linux-gnu/libjpeg.so.8 ~/virtualenv/python2.7/lib/
- sudo ln -s /usr/lib/`uname -i`-linux-gnu/libfreetype.so ~/virtualenv/python2.7/lib/
- sudo ln -s /usr/lib/`uname -i`-linux-gnu/libz.so ~/virtualenv/python2.7/lib/
- pip install nose
install:
- pip install Flask$FLASK_VERSION
- pip install -e .
script: nosetests