[Testbot] Plone 5.0 - Python 2.7 - Build # 1622 - Regression! - 4 failure(s)

jenkins at plone.org jenkins at plone.org
Tue Feb 18 06:55:30 UTC 2014


-------------------------------------------------------------------------------
Plone 5.0 - Python 2.7 - Build # 1622 - Still Failing!
-------------------------------------------------------------------------------

http://jenkins.plone.org/job/plone-5.0-python-2.7/1622/


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

Repository: plone.app.upgrade
Branch: refs/heads/master
Date: 2014-02-17T22:02:31-08:00
Author: David Glick (davisagli) <david at glicksoftware.com>
Commit: https://github.com/plone/plone.app.upgrade/commit/2189d42cede4b4202a20f05c37c30bd9843eef1e

don't run p5 upgrade tests in p4

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

diff --git a/plone/app/upgrade/v40/tests.py b/plone/app/upgrade/v40/tests.py
index 8144e37..ed75c7f 100644
--- a/plone/app/upgrade/v40/tests.py
+++ b/plone/app/upgrade/v40/tests.py
@@ -278,6 +278,7 @@ def testReplaceReferencebrowser(self):
             self.assertTrue('referencebrowser' in layers)
 
     def testInstallNewDependencies(self):
+        from plone.app.upgrade.v40.alphas import threeX_alpha1
         self.setRoles(['Manager'])
         # test for running the TinyMCE profile by checking for the skin layer
         # it installs (the profile is marked as noninstallable, so we can't
@@ -288,7 +289,7 @@ def testInstallNewDependencies(self):
             return
         del skins_tool['tinymce']
         for i in range(2):
-            loadMigrationProfile(self.portal, self.profile)
+            threeX_alpha1(self.portal)
             self.assertTrue('tinymce' in skins_tool)
             # sleep to avoid a GS log filename collision :-o
             time.sleep(1)
diff --git a/plone/app/upgrade/v50/tests.py b/plone/app/upgrade/v50/tests.py
index a182404..42af930 100644
--- a/plone/app/upgrade/v50/tests.py
+++ b/plone/app/upgrade/v50/tests.py
@@ -59,3 +59,15 @@ def test_footer_viewlets_hidden(self):
 
         self.assertEqual((u'plone.colophon', u'plone.site_actions'),
                          hidden_viewlets)
+
+
+def test_suite():
+    from unittest import TestSuite, makeSuite
+    try:
+        from Products.CMFPlone.factory import _IMREALLYPLONE5
+    except ImportError:
+        return TestSuite()
+    else:
+        suite = TestSuite()
+        suite.addTest(makeSuite(TestUpgrade))
+        return suite




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


More information about the Testbot mailing list