-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (55 loc) · 1.61 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
dist: bionic
language: python
cache:
pip: true
directories:
- eggs
- $HOME/buildout-cache
- $HOME/.buildout
python:
- "2.7"
matrix:
include:
- python: "2.7"
env: PLONE_VERSION=43
- python: "2.7"
env: PLONE_VERSION=51
- python: "2.7"
env: PLONE_VERSION=52
- python: "3.7"
env: PLONE_VERSION=52
fast_finish: true
before_install:
- mkdir -p $HOME/buildout-cache/{downloads,eggs,extends}
- mkdir -p $HOME/.buildout
- echo "[buildout]" > $HOME/.buildout/default.cfg
- echo "download-cache = $HOME/buildout-cache/downloads" >> $HOME/.buildout/default.cfg
- echo "eggs-directory = $HOME/buildout-cache/eggs" >> $HOME/.buildout/default.cfg
- echo "extends-cache = $HOME/buildout-cache/extends" >> $HOME/.buildout/default.cfg
- echo "abi-tag-eggs = true" >> $HOME/.buildout/default.cfg
- git config --global user.email "[email protected]"
- git config --global user.name "Travis CI"
- sudo apt-get install -y firefox-geckodriver
- virtualenv -p `which python` .
- bin/pip install -r requirements.txt -c constraints_plone$PLONE_VERSION.txt
- cp test_plone$PLONE_VERSION.cfg buildout.cfg
install:
- travis_retry pip install -U tox coveralls coverage -c constraints.txt
before_script:
- 'export DISPLAY=:99.0'
- export VERBOSE=true
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- sleep 3
script:
- PYTEST_ADDOPTS="-s -vv" tox
after_success:
- python -m coverage.pickle2json
- coverage combine
- coveralls
notifications:
email:
recipients:
- {author}
on_success: change
on_failure: change