Skip to content

Commit

Permalink
Merge 972f4e3 into 507711b
Browse files Browse the repository at this point in the history
  • Loading branch information
erral committed Oct 19, 2019
2 parents 507711b + 972f4e3 commit faebdfb
Show file tree
Hide file tree
Showing 33 changed files with 862 additions and 477 deletions.
47 changes: 30 additions & 17 deletions .travis.yml
@@ -1,27 +1,40 @@
dist: bionic
language: python
python: 2.7
sudo: false
cache:
pip: true
directories:
- eggs
env:
- PLONE_VERSION=4.2
- PLONE_VERSION=4.3
- PLONE_VERSION=5.0
- PLONE_VERSION=5.1
python:
- "2.7"
matrix:
include:
- python: "2.7"
env: PLONE_VERSION=43
- python: "2.7"
env: PLONE_VERSION=50
- python: "2.7"
env: PLONE_VERSION=51
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
- cp test_plone$PLONE_VERSION.cfg buildout.cfg

install:
- sed -ie "s#test-5.0#test-$PLONE_VERSION#" buildout.cfg
- python bootstrap.py
- bin/buildout annotate
- bin/buildout
- bin/buildout -N -t 3 code-analysis:return-status-codes=True annotate
- bin/buildout -N -t 3 code-analysis:return-status-codes=True

script:
- bin/code-analysis
- bin/test
# 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
- pip install coveralls
- coveralls
notifications:
irc: irc.freenode.org#plone-testing
- bin/createcoverage --output-dir=parts/test/coverage
- bin/pip install coverage
- bin/python -m coverage.pickle2json
- bin/pip install -q coveralls
- bin/coveralls
9 changes: 8 additions & 1 deletion CHANGES.rst
Expand Up @@ -4,7 +4,14 @@ Changelog
1.4.2 (unreleased)
------------------

- Nothing changed yet.
- Add uninstall profile
[erral]

- Modernize test setup
[erral]

- Update travis testing
[erral]


1.4.1 (2016-11-23)
Expand Down

0 comments on commit faebdfb

Please sign in to comment.