From 975d318036aff243e609d640d2b702c12a8c7ce6 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 1 Jun 2010 17:35:51 +0000 Subject: [PATCH] Monotone-Parent: bda8c0c7d4f41ed2b18820b74e11fe35187b1afe Monotone-Revision: 34db2738fe29db5da4cd2562d25f37a4131381f3 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-06-01T17:35:51 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ Tests/Integration/all.py | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7a905a5ab..f66bfd9b3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-01 Wolfgang Sourdeau + * Tests/Integration/all.py: disable multilanguage tests by + default, reverting the "disbale-languages" cmd-line parameter to + "enable-languages". + * Tests/Integration/webdavlib.py (WebDAVClient.__init__): made "username" and "password" parameters optional to enable anonymous connections. Also, M2Crypto.httpslib is imported explicitly only diff --git a/Tests/Integration/all.py b/Tests/Integration/all.py index 608814467..525a1e7b5 100755 --- a/Tests/Integration/all.py +++ b/Tests/Integration/all.py @@ -12,11 +12,11 @@ if __name__ == "__main__": "Russian", "Spanish", "Swedish", "Welsh"] # We can disable testing all languages - testLanguages = True - opts, args = getopt.getopt (sys.argv[1:], [], ["disable-languages"]) + testLanguages = False + opts, args = getopt.getopt (sys.argv[1:], [], ["enable-languages"]) for o, a in opts: - if o == "--disable-languages": - testLanguages = False + if o == "--enable-languages": + testLanguages = True for mod in os.listdir("."):