2 new revisions:

Revision: fe72661cbd9b
Branch:   default
Author:   Pekka Klärck
Date:     Tue Oct  8 07:45:53 2013 UTC
Log: Documented that run_atests.py needs to be run with Python 2.6 or newer...
http://code.google.com/p/robotframework/source/detail?r=fe72661cbd9b

Revision: 315caebf97b0
Branch:   default
Author:   Pekka Klärck
Date:     Tue Oct  8 07:46:01 2013 UTC
Log:      Automated merge with https://code.google.com/p/robotframework/
http://code.google.com/p/robotframework/source/detail?r=315caebf97b0

==============================================================================
Revision: fe72661cbd9b
Branch:   default
Author:   Pekka Klärck
Date:     Tue Oct  8 07:45:53 2013 UTC
Log: Documented that run_atests.py needs to be run with Python 2.6 or newer.

Update issue 1531
Status: Done
Owner: pekka.klarck
Documented this in in README and in the script itself. Most importantly updated the script so that now it fails with a clear error message if < 2.6 is used.
http://code.google.com/p/robotframework/source/detail?r=fe72661cbd9b

Modified:
 /atest/README.txt
 /atest/run_atests.py

=======================================
--- /atest/README.txt   Thu Jun  6 14:00:44 2013 UTC
+++ /atest/README.txt   Tue Oct  8 07:45:53 2013 UTC
@@ -71,7 +71,7 @@
     run test cases under `testdata`. It can be simply `python` or `jython`
     (if they are in PATH) or to a path a selected interpreter (e.g.
     `/usr/bin/python26`). Note that this script itself must always be
-    executed with Python.
+    executed with Python 2.6 or newer.

     Examples:
     $ atest/run_atests.py python --test example atest/robot
=======================================
--- /atest/run_atests.py        Fri Feb  1 08:26:58 2013 UTC
+++ /atest/run_atests.py        Tue Oct  8 07:45:53 2013 UTC
@@ -13,7 +13,7 @@
 run test cases under `testdata`. It can be simply `python` or `jython`
 (if they are in PATH) or to a path a selected interpreter (e.g.
 `/usr/bin/python26`). Note that this script itself must always be
-executed with Python.
+executed with Python 2.6 or newer.

 Examples:
 $ atest/run_atests.py python --test example atest/robot
@@ -28,6 +28,8 @@
 import tempfile
from os.path import abspath, basename, dirname, exists, join, normpath, splitext

+if sys.version_info < (2, 6):
+    sys.exit('Running this script requires Python 2.6 or newer.')

 CURDIR = dirname(abspath(__file__))
 RUNNER = normpath(join(CURDIR, '..', 'src', 'robot', 'run.py'))

==============================================================================
Revision: 315caebf97b0
Branch:   default
Author:   Pekka Klärck
Date:     Tue Oct  8 07:46:01 2013 UTC
Log:      Automated merge with https://code.google.com/p/robotframework/
http://code.google.com/p/robotframework/source/detail?r=315caebf97b0


--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to