def setUp(test): buildoutSetUp(test) install_develop('plone.recipe.zope2instance', test) install('zc.recipe.egg', test) install_dependencies(pkg_resources.working_set.require('ZEO'), test) install_dependencies(pkg_resources.working_set.require('Zope'), test) install_dependencies(pkg_resources.working_set.require('ZODB'), test)
def install_dependencies(dependencies, test): for dep in dependencies: try: install(dep.project_name, test) except OSError: # Some distributions are installed multiple times, and the # underlying API doesn't check for it pass
def setUp(test): buildoutSetUp(test) install('zc.recipe.egg', test) install('argparse', test) install('execute', test) install('mailinglogger', test) install('zope.dottedname', test) install_develop('checker', test)
def setUp(test): buildoutSetUp(test) install('zc.recipe.egg',test) install('argparse',test) install('execute',test) install('mailinglogger',test) install('zope.dottedname',test) install_develop('checker',test)
def setUp(test): buildoutSetUp(test) install_develop('leocornus.recipe.ci', test) install('pexpect', test) install('mwclient', test) install('requests', test) install('ansi2html', test) install('six', test)
def setUp(test): buildoutSetUp(test) install_develop('isotoma.recipe.zeo', test) install('zc.recipe.egg', test) if sys.platform[:3].lower() == "win": install('nt_svcutils', test) install('zope.mkzeoinstance', test) install('ZopeUndo', test) dependencies = pkg_resources.working_set.require('ZODB3') for dep in dependencies: try: install(dep.project_name, test) except OSError: # Some distributions are installed multiple times, and the # underlying API doesn't check for it pass
def setUp(test): buildoutSetUp(test) install_develop('leocornus.recipe.distribute', test) install('mwclient', test) install('requests', test) install('six', test)
def setUp(test): buildoutSetUp(test) install_develop('plone.recipe.zope2instance', test) install('zc.recipe.egg', test) install('mailinglogger', test) dependencies = pkg_resources.working_set.require('Zope2') for dep in dependencies: try: install(dep.project_name, test) except OSError: # Some distributions are installed multiple times, and the # underlying API doesn't check for it pass
def setUp(test): zc.buildout.testing.buildoutSetUp(test) # Install the recipe in develop mode zc.buildout.testing.install_develop('plone.recipe.genwebupc', test) # Install any other recipes that should be available in the tests #zc.buildout.testing.install('collective.recipe.foobar', test) install('zc.recipe.egg', test) install('mailinglogger', test) install('zope.mkzeoinstance', test) install('ZopeUndo', test) install('plone.recipe.zeoserver', test) install('plone.recipe.zope2instance', test) dependencies = pkg_resources.working_set.require('Zope2') for dep in dependencies: try: install(dep.project_name, test) except OSError: # Some distributions are installed multiple times, and the # underlying API doesn't check for it pass
def setUp(test): buildoutSetUp(test) install('zc.recipe.cmmi', test) install('jinja2', test) install('markupsafe', test) install_develop('plone.recipe.varnish', test)
def setUp(test): testing.buildoutSetUp(test) testing.install('zope.testing', test) testing.install_develop('zc.recipe.egg', test) testing.install_develop('pb.recipes.pydev', test)
def setUp(test): buildoutSetUp(test) install_develop('plone.recipe.varnish', test) install('zc.recipe.cmmi', test)
def setUp(test): buildoutSetUp(test) install_develop('plone.recipe.zeoserver', test) install('zc.recipe.egg', test) if sys.platform[:3].lower() == "win": install('nt_svcutils', test) install('zope.mkzeoinstance', test) install('ZopeUndo', test) install('zc.zrs', test) install('Automat', test) install('incremental', test) install('constantly', test) install('attrs', test) install('Twisted', test) install('hyperlink', test) dependencies = pkg_resources.working_set.require('ZODB3') for dep in dependencies: try: install(dep.project_name, test) except OSError: # Some distributions are installed multiple times, and the # underlying API doesn't check for it pass
def setUp(test): buildoutSetUp(test) install_develop('plone.recipe.zeoserver', test) install('zc.recipe.egg', test) if sys.platform[:3].lower() == "win": install('nt_svcutils', test) install('zope.mkzeoinstance', test) install('ZopeUndo', test) install('zc.zrs', test) install('Automat', test) install('incremental', test) install('constantly', test) install('attrs', test) install('Twisted', test) install('hyperlink', test) install('idna', test) install('PyHamcrest', test) dependencies = pkg_resources.working_set.require('ZODB') for dep in dependencies: try: install(dep.project_name, test) except OSError: # Some distributions are installed multiple times, and the # underlying API doesn't check for it pass
def setUp(test): buildoutSetUp(test) install_develop("plone.recipe.zeoserver", test) install("zc.recipe.egg", test) if sys.platform[:3].lower() == "win": install("nt_svcutils", test) install("zope.mkzeoinstance", test) install("ZopeUndo", test) install("zc.zrs", test) install("Twisted", test) dependencies = pkg_resources.working_set.require("ZODB3") for dep in dependencies: try: install(dep.project_name, test) except OSError: # Some distributions are installed multiple times, and the # underlying API doesn't check for it pass