-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
39 lines (39 loc) · 1 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
language: python
python:
- 2.6
- 2.7
sudo: false
cache:
directories:
- eggs
matrix:
allow_failures:
- python: 2.6
addons:
firefox: 45.8.0esr
before_install:
# FIXME: We have no idea how and why six==1.11.0 is being installed
- pip uninstall -y six
install:
- sed -ie "s#versions-$TRAVIS_PYTHON_VERSION.x#versions#" travis.cfg
- mkdir -p buildout-cache/eggs
- mkdir -p buildout-cache/downloads
- pip install -r requirements_$TRAVIS_PYTHON_VERSION.txt
- buildout -c travis.cfg annotate
- buildout -c travis.cfg -N -q
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- firefox -v
script:
- bin/code-analysis
- bin/test
after_success:
- bin/createcoverage
- pip install coveralls
- coveralls
notifications:
email:
hipchat:
secure: "Fw+g7XjsSvYmpWHT/DaUrQQ0eDxY+AGk+t1455c6nL9CnpPLQICCifHZT0Gl3Bcodona6a798Z5/YzqzevuiUmvmnbRHdPjsh5dAxv0cMaE/EonK3CHUjVb843NyeHre9N/7/Wci7S0cFjoEWPbOomQ1CCkUB9GJ9sl/9x4QeLI="