Esempio n. 1
0
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 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)
Esempio n. 3
0
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 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
Esempio n. 5
0
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)
Esempio n. 6
0
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)
Esempio n. 8
0
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)
Esempio n. 9
0
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)
Esempio n. 11
0
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
Esempio n. 12
0
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
Esempio n. 13
0
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
Esempio n. 14
0
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)
Esempio n. 16
0
def setUp(test):
    buildoutSetUp(test)
    install_develop('plone.recipe.varnish', test)
    install('zc.recipe.cmmi', test)
Esempio n. 17
0
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
Esempio n. 18
0
def setUp(test):
    buildoutSetUp(test)
    install('zc.recipe.cmmi', test)
    install('jinja2', test)
    install('markupsafe', test)
    install_develop('plone.recipe.varnish', test)
Esempio n. 19
0
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
Esempio n. 20
0
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