-
-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (34 loc) · 563 Bytes
/
.travis.yml
File metadata and controls
34 lines (34 loc) · 563 Bytes
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
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.5
- pypy
env:
- FLASK=0.8
- FLASK=0.9
- FLASK=0.10
- FLASK=0.11
install:
- pip install Flask==$FLASK
- pip install -r requirements-dev.pip --allow-external webassets
script:
- nosetests tests
notifications:
email:
- michael@elsdoerfer.com
branches:
only:
- master
matrix:
exclude:
# These do not support Python 3 yet.
- python: 3.3
env: FLASK=0.8
- python: 3.3
env: FLASK=0.9
- python: 3.5
env: FLASK=0.8
- python: 3.5
env: FLASK=0.9