-
Notifications
You must be signed in to change notification settings - Fork 13
/
.travis.yml
42 lines (41 loc) · 945 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
dist: bionic
language: python
python:
- "3.6"
- "3.7"
- "3.8"
env:
- DJANGO_VERSION=1.11.20
- DJANGO_VERSION=2.2.8
- DJANGO_VERSION=3.0
- DJANGO_VERSION=3.1
matrix:
exclude: []
install:
- pip install -q --upgrade pip
- pip install -q coveralls
- pip install -q beautifulsoup4
- pip install -q Pillow
- pip install -q Wand
- pip install -q Django==$DJANGO_VERSION
- pip install -q lxml
- pip install -q django-crispy-forms
- pip install -q docutils
before_install:
# - sudo add-apt-repository -y ppa:mc3man/trusty-media
- sudo apt-get update -qq
- sudo apt-get -y install ffmpeg libjpeg8 libjpeg8-dev libgdal-dev
script:
- python setup.py check --restructuredtext
- coverage run --source='smartfields' setup.py test
after_success:
coveralls
notifications:
email:
recipients:
on_success: never
on_failure: always
branches:
except:
- /^v[0-9].[0-9].[0-9]/