Skip to content

Commit a2a7f33

Browse files
committed
Fix for prep-env-script
1 parent 36547c6 commit a2a7f33

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plain2code_arguments.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
UNIT_TESTS_SCRIPT_NAME = "unittests_script"
1616
CONFORMANCE_TESTS_SCRIPT_NAME = "conformance_tests_script"
1717
DEFAULT_LOG_FILE_NAME = "codeplain.log"
18+
PREPARE_ENVIRONMENT_SCRIPT_NAME = "prepare_environment_script"
1819

1920

2021
def process_test_script_path(script_arg_name, config):
@@ -305,7 +306,7 @@ def parse_arguments():
305306
if args.full_plain and args.dry_run:
306307
parser.error("--full-plain and --dry-run are mutually exclusive")
307308

308-
script_arg_names = [UNIT_TESTS_SCRIPT_NAME, CONFORMANCE_TESTS_SCRIPT_NAME]
309+
script_arg_names = [UNIT_TESTS_SCRIPT_NAME, CONFORMANCE_TESTS_SCRIPT_NAME, PREPARE_ENVIRONMENT_SCRIPT_NAME]
309310
for script_name in script_arg_names:
310311
args = process_test_script_path(script_name, args)
311312

0 commit comments

Comments
 (0)