forked from espenmn/bda.plone.shopviews
-
Notifications
You must be signed in to change notification settings - Fork 6
/
.travis.yml
46 lines (42 loc) · 1.2 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
dist: bionic
language: python
sudo: false
cache:
pip: true
directories:
- eggs
- devsrc
matrix:
include:
- python: "2.7"
env: PLONE_VERSION=5.2.x
- python: "3.6"
env: PLONE_VERSION=5.2.x
- python: "3.7"
env: PLONE_VERSION=5.2.x
- python: "3.8"
env: PLONE_VERSION=5.2.x
sudo: true
fast_finish: true
before_install:
- sudo apt-get install -y firefox-geckodriver
- virtualenv -p `which python` .
- bin/pip install -r requirements.txt -c constraints_plone-$PLONE_VERSION.txt
install:
- bin/buildout -c plone-$PLONE_VERSION.cfg -N -t 3 code-analysis:return-status-codes=True annotate
- bin/buildout -c plone-$PLONE_VERSION.cfg -N -t 3 code-analysis:return-status-codes=True
before_script:
- 'export DISPLAY=:99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- sleep 3
- firefox -v
script:
# Run code-analysis, except on Python 3.6, which mysteriously fails to find zc.buildout.
- python --version 2> /dev/stdout | grep 3.6 || bin/code-analysis
- bin/test --all
after_success:
- bin/createcoverage --output-dir=parts/test/coverage
- bin/pip install coverage
- bin/python -m coverage.pickle2json
- bin/pip install -q coveralls
- bin/coveralls