forked from collective/collective.embedly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
30 lines (30 loc) · 830 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
language: python
python:
- 2.6
- 2.7
env:
- PLONE=4.1
- PLONE=4.2
- PLONE=4.3 QA=true
matrix:
global:
- secure: "PiqlxDfjGi0j9uUl0p/fBzt9YzvzKwMCgae+5xZPdRocNd68gRv1O7XQslDo\nE/nzXhrwAz1G+9JcTbfjAgnNhc2V1pCpLf2ZQRQaYsoIlVb0CPHQXbblRAL/\nz2pYgpcZaClkbGrsjmkg0bTE5Y43cwfPwuQVhAJj7dWaMF58Haw="
exclude:
- python: 2.7
env: PLONE=4.1
- python: 2.6
env: PLONE=4.2
- python: 2.6
env: PLONE=4.3 QA=true
before_install:
- mkdir -p buildout-cache/eggs
- mkdir -p buildout-cache/downloads
install:
- python bootstrap.py -v 1.6.3 -c test-$PLONE.x.cfg
- bin/buildout -t 5 -Nqc test-$PLONE.x.cfg
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- bin/test
after_success: test -v QA && bin/coverage.sh && pip install -q coveralls && coveralls || true