Skip to content

Commit

Permalink
Merge 5498ff1 into f323b16
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Nov 23, 2018
2 parents f323b16 + 5498ff1 commit f3e34f9
Show file tree
Hide file tree
Showing 9 changed files with 109 additions and 286 deletions.
1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ omit =
buildout-cache/eggs/*
eggs/*
parts/*
/home/travis/virtualenv/*
33 changes: 18 additions & 15 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
language: python
python: 2.7
sudo: false
env:
matrix:
- PLONE_VERSION=5.0
- PLONE_VERSION=5.1
cache:
pip: true
directories:
- eggs
env:
- PLONE_VERSION=4.3
matrix:
fast_finish: true
- eggs
- downloads
before_install:
- pip install -r requirements.txt
install:
- sed -ie "s#test-4.3#test-$PLONE_VERSION#" buildout.cfg
- python bootstrap.py
- bin/buildout annotate
- bin/buildout
- sed -ie "s#test-5.x.cfg#test-$PLONE_VERSION.x.cfg#" buildout.cfg
- buildout annotate
- buildout -N -q
script:
- bin/code-analysis
- bin/test
- bin/code-analysis
- bin/test
after_success:
- bin/createcoverage
- pip install coveralls
- coveralls
- bin/createcoverage --output-dir=parts/test/coverage
- pip install -q coveralls
- coveralls
notifications:
irc: irc.freenode.org#plone-testing
irc: irc.freenode.org#plone-testing
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ Changelog

- Initial release.
[davisagli]

- Support of dexterity content types.
Use module requests instead of urllib2.
Author: insert info about id and display name
[ksuess]
1 change: 1 addition & 0 deletions CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ Contributors
- Cris Ewing
- Héctor Velarde
- Rodrigo Ferreira de Souza
- Katja Süss
210 changes: 0 additions & 210 deletions bootstrap.py

This file was deleted.

15 changes: 10 additions & 5 deletions buildout.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[buildout]
extends =
https://raw.github.com/collective/buildout.plonetest/master/test-4.3.x.cfg
https://raw.github.com/collective/buildout.plonetest/master/qa.cfg
extends = https://raw.github.com/collective/buildout.plonetest/master/test-5.1.x.cfg

package-name = transmogrify.wordpress
package-extras = [test]
Expand All @@ -10,6 +8,10 @@ parts +=
code-analysis
createcoverage

[createcoverage]
recipe = zc.recipe.egg
eggs = createcoverage

[code-analysis]
recipe = plone.recipe.codeanalysis[recommended]
directory = ${buildout:directory}/transmogrify/wordpress
Expand All @@ -21,5 +23,8 @@ flake8 = True
flake8-ignore = C101,C901,D001,E221,E231,E261,E301,E302,E303,E501,E702,E713,E731,I001,P001,S001,T000

[versions]
# use latest version of coverage
coverage =
coverage = 4.0.3
python-coveralls = 2.7.0
six = 1.11.0
setuptools = 38.2.4
zc.buildout = 2.10.0
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
setuptools==38.2.4
zc.buildout==2.10.0
Loading

0 comments on commit f3e34f9

Please sign in to comment.