tests/run-tests.py
changeset 1223 45a6eace22bf
parent 1221 3a049b21a05b
child 1224 f3c19de4b29c
--- a/tests/run-tests.py	Sat Mar 23 14:43:30 2013 +0000
+++ b/tests/run-tests.py	Sat Apr 20 13:48:54 2013 +0100
@@ -198,6 +198,8 @@
         help="enable Py3k warnings on Python 2.6+")
     parser.add_option('--extra-config-opt', action="append",
                       help='set the given config opt in the test hgrc')
+    parser.add_option('--random', action="store_true",
+                      help='run tests in random order')
 
     for option, (envvar, default) in defaults.items():
         defaults[option] = type(default)(os.environ.get(envvar, default))
@@ -1248,6 +1250,9 @@
 
     tests = args
 
+    if options.random:
+        random.shuffle(tests)
+
     # Reset some environment variables to well-known values so that
     # the tests produce repeatable output.
     os.environ['LANG'] = os.environ['LC_ALL'] = os.environ['LANGUAGE'] = 'C'