forked from quintagroup/quintagroup.seoptimizer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
34 lines (34 loc) · 924 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
before_install:
- pip install -q http://effbot.org/downloads/Imaging-1.1.6.tar.gz coveralls
- sudo apt-get install -qq libxml2-dev libxslt-dev
- mkdir -p buildout-cache/eggs
- mkdir -p buildout-cache/downloads
env:
global:
secure: X1pBwo+oqaTJDgb/K0KYYhx6E0VV53SAPwNmQbiZw1f8PGCoW0/tNfsmz+TP3vwzmGjmGHJDfoXI7FMKGdkeb2X8LxwpxSZ9vwDOrQQNr+U50wN+jE5HFzeKlEVFnImtEaCMnXW6ocMZ5biQj1cNekiXF6N3EPHt2POldAHjqmE=
matrix:
- PLONE=4.0
- PLONE=4.1
- PLONE=4.2
- PLONE=4.3 QA=true
language: python
python:
- 2.6
- 2.7
install:
- sed -ie "s#travis-4.x.cfg#travis-$PLONE.x.cfg#" travis.cfg
- python bootstrap.py -c travis.cfg
- bin/buildout -t 5 -Nqc travis.cfg
script:
- bin/test
matrix:
exclude:
- env: PLONE=4.0
python: 2.7
- env: PLONE=4.1
python: 2.7
- env: PLONE=4.2
python: 2.6
- env: PLONE=4.3 QA=true
python: 2.6
after_success: test -v QA && bin/coverage.sh && coveralls || true