diff --git a/VERSION b/VERSION index 16df9001..a071bd53 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.9.5-trunk+timestamp.2014.04.02.09.18.42 +Version 2.9.5-trunk+timestamp.2014.04.07.12.15.01 diff --git a/gluon/tests/test_languages.py b/gluon/tests/test_languages.py index f7f9a38e..682f3cd4 100644 --- a/gluon/tests/test_languages.py +++ b/gluon/tests/test_languages.py @@ -12,6 +12,9 @@ import tempfile import threading import logging +def is_gae(): + import httplib + return 'appengine' in str(httplib.HTTP) def fix_sys_path(): """ @@ -73,6 +76,8 @@ try: pass def test_reads_and_writes(self): + if is_gae(): + return # do not check since on GAE not write of filesystem readwriters = 10 pool = multiprocessing.Pool(processes=readwriters) results = pool.map(read_write, [[self.filename, 10]] * readwriters)