forked from django-commons/drf-haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
49 lines (39 loc) · 699 Bytes
/
Copy path.travis.yml
File metadata and controls
49 lines (39 loc) · 699 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
language: python
python:
- 2.7
- 3.4
- 3.5
- pypy
cache:
apt: true
pip: true
directories:
- pip_download_cache
addons:
apt_packages:
- default-jdk
before_install:
- mkdir -p $PIP_DOWNLOAD_CACHE
install:
- pip install coveralls
- pip install tox
- pip install "Django${DJANGO_VERSION}"
after_success:
coveralls
script:
- python setup.py test
env:
global:
- PIP_DOWNLOAD_CACHE="pip_download_cache"
matrix:
- DJANGO_VERSION=">=1.8,<1.9"
- DJANGO_VERSION=">=1.9,<1.10"
- DJANGO_VERSION="==1.10b1"
matrix:
allow_failures:
- python: pypy
- env: DJANGO_VERSION="==1.10b1"
services:
- elasticsearch
notifications:
email: false