From fde0a02621fb98e89183ef6275f70dd3f57b1b96 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Wed, 19 Oct 2022 14:44:36 +0200 Subject: [PATCH] OP-3426 - add automatic_tests argument to cli for extractenvironments --- openpype/cli.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openpype/cli.py b/openpype/cli.py index 398d1a94c0..5f0fd1de7b 100644 --- a/openpype/cli.py +++ b/openpype/cli.py @@ -127,7 +127,11 @@ def webpublisherwebserver(executable, upload_dir, host=None, port=None): @click.option( "--envgroup", help="Environment group (e.g. \"farm\")", default=None ) -def extractenvironments(output_json_path, project, asset, task, app, envgroup): +@click.option( + "--automatic_tests", help="Is this automatic test", default=None +) +def extractenvironments(output_json_path, project, asset, task, app, envgroup, + automatic_tests): """Extract environment variables for entered context to a json file. Entered output filepath will be created if does not exists.