diff --git a/run_tests.py b/run_tests.py index f54e59efa3..5b7b11f20d 100755 --- a/run_tests.py +++ b/run_tests.py @@ -115,7 +115,11 @@ def CompleterType( value ): def ParseArguments(): - parser = argparse.ArgumentParser() + description = ''' + Unknown arguments are passed to unittest module, e.g. to select test cases. + See `python -m unittest --help` for more details. + ''' + parser = argparse.ArgumentParser( description=description ) group = parser.add_mutually_exclusive_group() group.add_argument( '--no-clang-completer', action = 'store_true', help = argparse.SUPPRESS ) # deprecated