summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-16 17:36:27 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-16 17:36:27 +0100
commit346737d6c57b5806870346ef54ad71a355dc200d (patch)
tree81984493d25b28051bd002f6b0602de27a85c40b
parent777da23a5ca3f0364d30b33bd34043225b5bbc73 (diff)
downloadtrollius-git-346737d6c57b5806870346ef54ad71a355dc200d.tar.gz
runtests.py: rephrase the message mentionning randomization of tests
-rw-r--r--runtests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.py b/runtests.py
index 8cb56fe..c38b0c1 100644
--- a/runtests.py
+++ b/runtests.py
@@ -122,7 +122,7 @@ def randomize_tests(tests, seed):
if seed is None:
seed = random.randrange(10000000)
random.seed(seed)
- print("Using random seed", seed)
+ print("Randomize test execution order (seed: %s)" % seed)
random.shuffle(tests._tests)