forked from collective/collective.purgebyid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
41 lines (41 loc) · 841 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
35
36
37
38
39
40
41
language: python
sudo: required
dist: xenial
cache:
pip: true
directories:
- eggs
- downloads
matrix:
include:
- python: 2.7
env: PLONE_VERSION=4.3.x
- python: 2.7
env: PLONE_VERSION=5.0.x
- python: 2.7
env: PLONE_VERSION=5.1.x
- 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
before_install:
- mkdir -p buildout-cache/downloads
- mkdir -p buildout-cache/eggs
install:
- pip install -r requirements-$PLONE_VERSION.txt
- buildout -Nc plone-$PLONE_VERSION.cfg
script:
- bin/code-analysis
- bin/test
after_success:
- bin/coverage.sh
- pip install coveralls
- coveralls
after_failure:
- bin/csslint --version
- bin/jshint --version
- bin/jscs --version
notifications:
email: false