Commit 8dddf306 authored by Jérome Perrin's avatar Jérome Perrin

Don't run ERP5TioSafe tests that were all @skipped

parent 09ff03af
...@@ -30,9 +30,7 @@ ...@@ -30,9 +30,7 @@
import unittest import unittest
from DateTime import DateTime from DateTime import DateTime
from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin
from Products.ERP5Type.tests.backportUnittest import skip
@skip("must be checked against zope2.12")
class TestPersonERP5Synchronization(testPrestashopMixin): class TestPersonERP5Synchronization(testPrestashopMixin):
""" This class allows to check different cases of Person's sync. """ """ This class allows to check different cases of Person's sync. """
def afterSetUp(self): def afterSetUp(self):
......
...@@ -28,9 +28,7 @@ ...@@ -28,9 +28,7 @@
############################################################################## ##############################################################################
from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin
from Products.ERP5Type.tests.backportUnittest import skip
@skip("must be checked against zope2.12")
class TestPersonPrestashopSynchronization(testPrestashopMixin): class TestPersonPrestashopSynchronization(testPrestashopMixin):
""" This class allows to check different cases of Person's sync. """ """ This class allows to check different cases of Person's sync. """
def afterSetUp(self): def afterSetUp(self):
......
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin
from Products.ERP5Type.tests.backportUnittest import skip from Products.ERP5Type.tests.backportUnittest import skip
@skip("must be checked against zope2.12")
class TestProductERP5Synchronization(testPrestashopMixin): class TestProductERP5Synchronization(testPrestashopMixin):
""" This class allows to check different cases of Product's sync. """ """ This class allows to check different cases of Product's sync. """
def afterSetUp(self): def afterSetUp(self):
......
...@@ -28,9 +28,7 @@ ...@@ -28,9 +28,7 @@
############################################################################## ##############################################################################
from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin
from Products.ERP5Type.tests.backportUnittest import skip
@skip("must be checked against zope2.12")
class TestProductPrestashopSynchronization(testPrestashopMixin): class TestProductPrestashopSynchronization(testPrestashopMixin):
""" This class allows to check different cases of Product's sync. """ """ This class allows to check different cases of Product's sync. """
......
...@@ -29,9 +29,7 @@ ...@@ -29,9 +29,7 @@
from DateTime import DateTime from DateTime import DateTime
from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin from Products.ERP5TioSafe.tests.testPrestashopMixin import testPrestashopMixin
from Products.ERP5Type.tests.backportUnittest import skip
@skip("must be checked against zope2.12")
class TestSaleOrderERP5Synchronization(testPrestashopMixin): class TestSaleOrderERP5Synchronization(testPrestashopMixin):
""" This class allows to check different cases of Slae Order's sync. """ """ This class allows to check different cases of Slae Order's sync. """
......
...@@ -36,6 +36,10 @@ class _ERP5(ERP5TypeTestSuite): ...@@ -36,6 +36,10 @@ class _ERP5(ERP5TypeTestSuite):
# don't test 3rd party products # don't test 3rd party products
if product in ('PortalTransforms', 'MailTemplates', 'Zelenium'): if product in ('PortalTransforms', 'MailTemplates', 'Zelenium'):
continue continue
# ERP5TioSafe is disabled for now because it requires external programs
# such as php and it has not been updated for Zope >= 2.12
if product == 'ERP5TioSafe':
continue
test_list.append(test_case) test_list.append(test_case)
return test_list return test_list
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment