diff -r 48f468f33704 -r e4580e5f0703 devtools/test/unittest_httptest.py --- a/devtools/test/unittest_httptest.py Fri Dec 10 12:17:18 2010 +0100 +++ b/devtools/test/unittest_httptest.py Fri Mar 11 09:46:45 2011 +0100 @@ -19,6 +19,7 @@ import httplib +from logilab.common.testlib import Tags from cubicweb.devtools.httptest import CubicWebServerTC, CubicWebServerConfig @@ -40,7 +41,9 @@ class TwistedCWIdentTC(CubicWebServerTC): - anonymous_logged = False + + anonymous_allowed = False + tags = CubicWebServerTC.tags | Tags(('auth',)) def test_response_denied(self): response = self.web_get() @@ -49,7 +52,7 @@ def test_login(self): response = self.web_get() if response.status != httplib.FORBIDDEN: - self.skipTest('Already authenticated') + self.skipTest('Already authenticated, "test_response_denied" must have failed') # login self.web_login(self.admlogin, self.admpassword) response = self.web_get()