From 4c61a29a630d7195ef11f7dcc270aff28396f394 Mon Sep 17 00:00:00 2001 From: Yatsishin Ilya <2159081+qoega@users.noreply.github.com> Date: Mon, 10 Aug 2020 16:44:04 +0300 Subject: [PATCH] Add noop runner parameter to prepare actual changes --- tests/integration/runner | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration/runner b/tests/integration/runner index 6369ebeea3e..71993e47ff7 100755 --- a/tests/integration/runner +++ b/tests/integration/runner @@ -124,6 +124,10 @@ if __name__ == "__main__": default="latest", help="Version of docker image which runner will use to run tests") + parser.add_argument( + "--docker-compose-images-tags", + action="append", + help="Set non-default tags for images used in docker compose recipes(yandex/my_container:my_tag)") parser.add_argument('pytest_args', nargs='*', help="args for pytest command")