# HG changeset patch # User Pierre-Yves David # Date 2015-05-08 22:00:07 # Node ID f66fc374d2d75e881bff301df389b1f1efdfe0a1 # Parent f52c5701925af33cac60c6d1770ba15277f9ff5b run-test.py: greatly increase the priority of 'check-code' tests As check-code is actually quite long to run for its file size, this prevent them to be scheduled too late during the test run. This reduces my typical test run from 107 seconds to 90 seconds diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1664,7 +1664,7 @@ class TestRunner(object): # keywords for slow tests slow = {b'svn': 10, b'gendoc': 10, - b'check-code-hg': 10, + b'check-code-hg': 100, } def sortkey(f): # run largest tests first, as they tend to take the longest