[Testbot] Plone 4.3 - Python 2.6 - Build # 2555 - Regression! - 6 failure(s)

jenkins at plone.org jenkins at plone.org
Fri Nov 7 23:39:32 UTC 2014


-------------------------------------------------------------------------------
Plone 4.3 - Python 2.6 - Build # 2555 - Still Failing!
-------------------------------------------------------------------------------

http://jenkins.plone.org/job/plone-4.3-python-2.6/2555/


-------------------------------------------------------------------------------
CHANGES
-------------------------------------------------------------------------------

Repository: plone.app.upgrade
Branch: refs/heads/master
Date: 2014-11-07T14:58:58-08:00
Author: David Glick (davisagli) <david at glicksoftware.com>
Commit: https://github.com/plone/plone.app.upgrade/commit/050d9c9b1cc18d48b07f7e8509d872b3cb24b904

avoid breaking plone 4 tests

Files changed:
M plone/app/upgrade/v50/tests.py

diff --git a/plone/app/upgrade/v50/tests.py b/plone/app/upgrade/v50/tests.py
index 362d0bc..c6aaea1 100644
--- a/plone/app/upgrade/v50/tests.py
+++ b/plone/app/upgrade/v50/tests.py
@@ -1,6 +1,5 @@
 from Products.CMFCore.utils import getToolByName
 from plone.app.upgrade.tests.base import MigrationTest
-from plone.app.upgrade.v50 import alphas
 from plone.app.upgrade.v50.testing import REAL_UPGRADE_FUNCTIONAL
 from plone.app.viewletmanager.interfaces import IViewletSettingsStorage
 from plone.portlets.interfaces import IPortletAssignmentMapping
@@ -12,6 +11,16 @@
 
 import unittest
 
+try:
+    from Products.CMFPlone.factory import _IMREALLYPLONE5  # nopep8
+except ImportError:
+    PLONE_5 = False
+else:
+    PLONE_5 = True
+
+if PLONE_5:
+    from plone.app.upgrade.v50 import alphas
+
 
 class PASUpgradeTest(MigrationTest):
 
@@ -113,9 +122,7 @@ def testBarcelonetaThemeIsInstalled(self):
 def test_suite():
     # Skip these tests on Plone 4
     from unittest import TestSuite, makeSuite
-    try:
-        from Products.CMFPlone.factory import _IMREALLYPLONE5  # nopep8
-    except ImportError:
+    if PLONE_5:
         return TestSuite()
     else:
         suite = TestSuite()




-------------------------------------------------------------------------------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: CHANGES.log
Type: application/octet-stream
Size: 1523 bytes
Desc: not available
URL: <http://lists.plone.org/pipermail/plone-testbot/attachments/20141107/b5d3f5f1/attachment-0002.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: build.log
Type: application/octet-stream
Size: 181242 bytes
Desc: not available
URL: <http://lists.plone.org/pipermail/plone-testbot/attachments/20141107/b5d3f5f1/attachment-0003.obj>


More information about the Testbot mailing list