index.TestCase: support more arguments (like -k)

This commit is contained in:
Jochen Sprickerhof 2023-03-27 19:13:07 +02:00 committed by Hans-Christoph Steiner
parent 4a386aa2eb
commit 484f289919
1 changed files with 1 additions and 1 deletions

View File

@ -663,7 +663,7 @@ if __name__ == "__main__":
default=False,
help="Spew out even more information than normal",
)
(options, args) = parser.parse_args()
(options, args) = parser.parse_args(["--verbose"])
Options.verbose = options.verbose
newSuite = unittest.TestSuite()