From e7a1edf4e84726acbea27a8aa051813df4e4761a Mon Sep 17 00:00:00 2001 From: Stephen Watson Date: Sat, 16 Apr 2005 19:25:45 +0000 Subject: [PATCH] 2.0.0 Release git-svn-id: https://rox.svn.sourceforge.net/svnroot/rox/trunk/ROX-Lib2@3875 66de3db3-b00d-0410-b41b-f4738ad19bea --- AppInfo.xml | 2 +- Help/Changes | 4 ++++ python/rox/__init__.py | 2 +- tests/python/testall.py | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/AppInfo.xml b/AppInfo.xml index cf35217..2568539 100644 --- a/AppInfo.xml +++ b/AppInfo.xml @@ -6,7 +6,7 @@ Shared library for ROX Thomas Leonard - 1.9.18 (24-Mar-2005) + 2.0.0 (16-Apr-2005) GNU General Public License http://rox.sourceforge.net diff --git a/Help/Changes b/Help/Changes index 3afd75f..057b847 100644 --- a/Help/Changes +++ b/Help/Changes @@ -3,6 +3,10 @@ by Thomas Leonard http://rox.sourceforge.net +16-Apr-2005 (Release 2.0.0) +~~~~~~~~~~~ +Run unit tests in alphabetical order as it fixes a strange interaction between them (Stephen Watson). + 10-Apr-2005 ~~~~~~~~~~~ Added unit tests for processes module, based on old tests in Archive (Thomas diff --git a/python/rox/__init__.py b/python/rox/__init__.py index b67be51..823686a 100644 --- a/python/rox/__init__.py +++ b/python/rox/__init__.py @@ -33,7 +33,7 @@ import sys, os, codecs _to_utf8 = codecs.getencoder('utf-8') -roxlib_version = (1, 9, 18) +roxlib_version = (2, 0, 0) _path = os.path.realpath(sys.argv[0]) app_dir = os.path.dirname(_path) diff --git a/tests/python/testall.py b/tests/python/testall.py index 3a7c7b8..8cced68 100755 --- a/tests/python/testall.py +++ b/tests/python/testall.py @@ -11,6 +11,7 @@ sys.argv.append('-v') suite_names = [f[:-3] for f in os.listdir(my_dir) if f.startswith('test') and f.endswith('.py')] suite_names.remove('testall') +suite_names.sort() alltests = unittest.TestSuite() -- 2.11.4.GIT