From 2e98e380df36b39abbbd8458f8fa3e27859173ed Mon Sep 17 00:00:00 2001 From: kakwa Date: Fri, 29 Jul 2016 07:36:32 +0200 Subject: [PATCH] adding slow_disabled decorator on html check unit tests --- tests/test_LdapCherry.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_LdapCherry.py b/tests/test_LdapCherry.py index b91aa24..e4af86a 100644 --- a/tests/test_LdapCherry.py +++ b/tests/test_LdapCherry.py @@ -18,6 +18,7 @@ from cherrypy.process import plugins, servers from cherrypy import Application import logging from ldapcherry.lclogging import * +from disable import * import json cherrypy.session = {} @@ -245,6 +246,7 @@ class TestError(object): app._modify(modify_form) app._deleteuser('test') + @slow_disabled def testHtml(self): app = LdapCherry() loadconf('./tests/cfg/ldapcherry_test.ini', app) @@ -266,6 +268,7 @@ class TestError(object): loadconf('./tests/cfg/ldapcherry_test.ini', app) app.modify('ssmith'), + @slow_disabled def testNaughtyStrings(self): app = LdapCherry() loadconf('./tests/cfg/ldapcherry_test.ini', app)