From ebcbc676d62e713ee4a6551b107d0726194dd576 Mon Sep 17 00:00:00 2001 From: "Jens W. Klein" Date: Fri, 13 Oct 2017 11:37:31 +0200 Subject: [PATCH] Fixes #222 default travis setup is broken --- CHANGES.rst | 4 +++- bobtemplates/plone/addon/.travis.yml.bob | 8 +++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 558ddba8..9727c7de 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,10 +4,12 @@ Changelog 3.0.0a3 (unreleased) -------------------- -- Nothing changed yet. +- Fix #222 default travis setup is broken. + [jensens] 3.0.0a2 (2017-10-01) +-------------------- - Cleanup Package - remove unnecessary files from past versions [loechel] diff --git a/bobtemplates/plone/addon/.travis.yml.bob b/bobtemplates/plone/addon/.travis.yml.bob index e7996668..8081ae69 100644 --- a/bobtemplates/plone/addon/.travis.yml.bob +++ b/bobtemplates/plone/addon/.travis.yml.bob @@ -1,6 +1,7 @@ language: python sudo: false cache: + pip: true directories: - eggs - downloads @@ -9,9 +10,10 @@ python: matrix: fast_finish: true install: - - python bootstrap-buildout.py - - bin/buildout -N buildout:download-cache=downloads code-analysis:return-status-codes=True annotate - - bin/buildout -N buildout:download-cache=downloads code-analysis:return-status-codes=True + - pip install -U pip + - pip install -r requirements.txt + - buildout -N buildout:download-cache=downloads code-analysis:return-status-codes=True annotate + - buildout -N buildout:download-cache=downloads code-analysis:return-status-codes=True before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start