forked from django-haystack/django-haystack
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
67 lines (57 loc) · 1.56 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
sudo: false
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- pypy
cache:
apt: true
pip: true
directories:
- $HOME/download-cache
addons:
apt_packages:
- binutils
- default-jdk
- gdal-bin
- libgdal1h
- libgeos-c1
- libproj-dev
- libxapian22
- python-xapian
- wajig
before_install:
- mkdir -p $HOME/download-cache
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install mock==1.0.1; fi
- pip install requests "Django${DJANGO_VERSION}"
- python setup.py clean build install
before_script:
- BACKGROUND_SOLR=true test_haystack/solr_tests/server/start-solr-test-server.sh
script:
- python test_haystack/solr_tests/server/wait-for-solr
- SOLR_SCHEMA="test_haystack/solr_tests/server/solr4/solr/collection1/conf/schema.xml" python setup.py test
env:
matrix:
- DJANGO_VERSION=">=1.6,<1.7" SOLR_VERSION="4.10.4"
- DJANGO_VERSION=">=1.7,<1.8" SOLR_VERSION="4.10.4"
- DJANGO_VERSION=">=1.8,<1.9" SOLR_VERSION="4.10.4"
- DJANGO_VERSION=">=1.6,<1.7" SOLR_VERSION="5.2.1"
- DJANGO_VERSION=">=1.7,<1.8" SOLR_VERSION="5.2.1"
- DJANGO_VERSION=">=1.8,<1.9" SOLR_VERSION="5.2.1"
matrix:
allow_failures:
- python: "pypy"
- python: 2.6
exclude:
- python: 2.6
env: DJANGO_VERSION=">=1.7,<1.8"
- python: 2.6
env: DJANGO_VERSION=">=1.8,<1.9"
services:
- elasticsearch
notifications:
irc: "irc.freenode.org#haystack"
email: false