Skip to content

Instantly share code, notes, and snippets.

@hvelarde
Created August 8, 2012 16:41
Show Gist options
  • Save hvelarde/3296522 to your computer and use it in GitHub Desktop.
Save hvelarde/3296522 to your computer and use it in GitHub Desktop.
Sample buildout configuration file to run tests for Plone add-ons
[buildout]
extends =
http://svn.plone.org/svn/collective/buildout/plonetest/test-4.x.cfg
parts = test
package-name = your.package
package-extras = [test]
#test-eggs = Pillow
# network speedup
socket-timeout = 3
allow-hosts =
*.plone.org
*.python.org
*.zope.org
docutils.sourceforge.net
effbot.org
prdownloads.sourceforge.net
[test]
eggs =
${buildout:package-name} ${buildout:package-extras}
${buildout:test-eggs}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment