diff --git a/checkouts.cfg b/checkouts.cfg index a8d2376..4dcedbb 100644 --- a/checkouts.cfg +++ b/checkouts.cfg @@ -5,7 +5,11 @@ extends = always-checkout = force auto-checkout += collective.contact.core + collective.contact.widget collective.dms.basecontent + collective.dms.thesaurus plone.app.dexterity plone.dexterity plone.formwidget.masterselect + z3c.form + plone.app.z3cform diff --git a/jenkins-base.cfg b/jenkins-base.cfg new file mode 100644 index 0000000..4010089 --- /dev/null +++ b/jenkins-base.cfg @@ -0,0 +1,23 @@ +[buildout] +extends = + buildout.cfg + https://raw.github.com/plone/buildout.jenkins/master/jenkins.cfg + https://raw.github.com/plone/buildout.jenkins/master/jenkins-code-analysis.cfg + +jenkins-test-eggs = ${buildout:package-name} ${buildout:package-extras} + +parts += pylint + +[pylint] +recipe = zc.recipe.egg +eggs = pylint + ${buildout:eggs} +scripts = pylint +entry-points = pylint=pylint.lint:Run +arguments = [ + '--output-format=parseable', + '--zope=y', + '--reports=y', + '--disable=E0611,F0401,W0232,E1101,C0103,C0111,R0201,W0201,R0911,R0904,F0220,E1103,R0901,E0211,E0213,E1002,W0622,C0301,W0212,R0903', + '--generated-members=objects', + ] + (sys.argv[1:] or ["${buildout:jenkins-test-directories}"]) diff --git a/jenkins.cfg b/jenkins.cfg new file mode 100644 index 0000000..361112e --- /dev/null +++ b/jenkins.cfg @@ -0,0 +1,3 @@ +[buildout] +extends = jenkins-base.cfg +jenkins-test-directories = src/collective/dms/mailcontent diff --git a/sources.cfg b/sources.cfg index cc5b417..f989afb 100644 --- a/sources.cfg +++ b/sources.cfg @@ -11,9 +11,15 @@ cedricmessiant = git://github.com/cedricmessiant cedricmessiant_push = git@github.com:cedricmessiant entrouvert = git://repos.entrouvert.org entrouvert_push = git+ssh://git@repos.entrouvert.org +zopefoundation = git://github.com/zopefoundation +zopefoundation_push = git@github.com:zopefoundation [sources] collective.contact.core = git ${remotes:collective}/collective.contact.core.git pushurl=${remotes:collective_push}/collective.contact.core.git +collective.contact.widget = git ${remotes:collective}/collective.contact.widget.git pushurl=${remotes:collective_push}/collective.contact.widget.git collective.dms.basecontent = git ${remotes:collective}/collective.dms.basecontent.git pushurl=${remotes:collective_push}/collective.dms.basecontent.git collective.dms.mailcontent = git ${remotes:collective}/collective.dms.mailcontent.git pushurl=${remotes:collective_push}/collective.dms.mailcontent.git +collective.dms.thesaurus = git ${remotes:collective}/collective.dms.thesaurus.git pushurl=${remotes:collective_push}/collective.dms.thesaurus.git plone.formwidget.masterselect = git ${remotes:cedricmessiant}/plone.formwidget.masterselect.git pushurl=${remotes:cedricmessiant_push}/plone.formwidget.masterselect.git +plone.app.z3cform = git ${remotes:plone}/plone.app.z3cform.git pushurl=${remotes:plone_push}/plone.app.z3cform.git +z3c.form = git ${remotes:zopefoundation}/z3c.form pushurl=${remotes:zopefoundation_push}/z3c.form