# HG changeset patch # User Matt Mackall # Date 2013-06-06 19:40:26 # Node ID 3c3f6b83f8cbcfda555cc1a95b17027b903c9e72 # Parent 446ab88d3f1c55f7c33e965a2cd598787d2476a4 run-tests: make --noskips work diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -1125,8 +1125,9 @@ def runtests(options, tests): ignored = len(results['i']) print - for s in results['s']: - print "Skipped %s: %s" % s + if not options.noskips: + for s in results['s']: + print "Skipped %s: %s" % s for s in results['!']: print "Failed %s: %s" % s _checkhglib("Tested")