From ff80c1f3ce32cadbffc0c75780b50ebce071f452 Mon Sep 17 00:00:00 2001 From: Ivan <5627721+abyss7@users.noreply.github.com> Date: Fri, 25 Dec 2020 15:59:02 +0300 Subject: [PATCH] Move --antlr arg outside of parser group --- tests/clickhouse-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/clickhouse-test b/tests/clickhouse-test index 94ad1a34de8..3e4429449a7 100755 --- a/tests/clickhouse-test +++ b/tests/clickhouse-test @@ -886,7 +886,7 @@ if __name__ == '__main__': group=parser.add_mutually_exclusive_group(required=False) group.add_argument('--shard', action='store_true', default=None, dest='shard', help='Run sharding related tests (required to clickhouse-server listen 127.0.0.2 127.0.0.3)') group.add_argument('--no-shard', action='store_false', default=None, dest='shard', help='Do not run shard related tests') - group.add_argument('--antlr', action='store_true', default=False, dest='antlr', help='Use new ANTLR parser in tests') + parser.add_argument('--antlr', action='store_true', default=False, dest='antlr', help='Use new ANTLR parser in tests') args = parser.parse_args()