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("."):