run-test.py: greatly increase the priority of 'check-code' tests
authorPierre-Yves David <pierre-yves.david@fb.com>
Fri, 08 May 2015 15:00:07 -0700
changeset 25068 f66fc374d2d7
parent 25067 f52c5701925a
child 25071 8ce36dba70d1
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
tests/run-tests.py
--- a/tests/run-tests.py	Fri May 08 00:04:07 2015 -0700
+++ b/tests/run-tests.py	Fri May 08 15:00:07 2015 -0700
@@ -1664,7 +1664,7 @@
             # 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