diff --git a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 index e2e2f5bfbb..def95f2d40 100644 --- a/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 +++ b/roles/taskotron/buildmaster-configure/templates/ci.master.cfg.j2 @@ -160,7 +160,7 @@ from buildbot.process.properties import Interpolate def create_test_factory(repo_name, func=True): factory = BuildFactory() factory.addStep(Git(repourl=Interpolate('https://bitbucket.org/fedoraqa/%s.git' % repo_name), - mode='full', method='clobber')) + mode='full',method='clobber')) factory.addStep(ShellCommand(command=['virtualenv', '--system-site-packages', 'env'])) factory.addStep(ShellCommand(command=['bash', '-c', 'source env/bin/activate; pip install -r requirements.txt'])) factory.addStep(ShellCommand(command=['bash', '-c', 'source env/bin/activate; TEST="true" py.test %s testing/' % '-F' if func else ''], name=repo_name)) @@ -179,7 +179,8 @@ fake_fedorainfra_factory = create_test_factory('fake_fedorainfra') def create_test_factory(repo_name, func=True): factory = BuildFactory() factory.addStep(Git(repourl=Interpolate('{{ repo_base }}/%s.git' % repo_name), - mode='full', method='clobber')) + mode='full', env={'GIT_SSL_NO_VERIFY': 'yes'}, + method='clobber')) factory.addStep(ShellCommand(command=['virtualenv', '--system-site-packages', 'env'])) factory.addStep(ShellCommand(command=['bash', '-c', 'source env/bin/activate; pip install -r requirements.txt'])) factory.addStep(ShellCommand(command=['bash', '-c', 'source env/bin/activate; TEST="true" py.test %s testing/' % '-F' if func else ''], name=repo_name))