From d166d08dd5c4529f651e15c7c56f3c7f7e93f198 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 2 Aug 2017 14:45:06 +0900 Subject: [PATCH] spec: Enable passing -g to test.py --- script/test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/test.py b/script/test.py index 804bce9eb61e..ba6f96d898c7 100755 --- a/script/test.py +++ b/script/test.py @@ -81,6 +81,9 @@ def parse_args(): help='Run tests in CI mode', action='store_true', required=False) + parser.add_argument('-g', + help='Filter', + required=False) parser.add_argument('-v', '--verbose', action='store_true', help='Prints the output of the subprocesses')