Monotone-Parent: bda8c0c7d4f41ed2b18820b74e11fe35187b1afe

Monotone-Revision: 34db2738fe29db5da4cd2562d25f37a4131381f3

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-01T17:35:51
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2010-06-01 17:35:51 +00:00
parent bb83e75057
commit 975d318036
2 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,9 @@
2010-06-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* 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

View File

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