Skip to content
Snippets Groups Projects
Commit ba89f18b authored by Manuel Günther's avatar Manuel Günther
Browse files

execute_only flag is now evaluated from the config file

parent b0fee5e4
No related branches found
No related tags found
1 merge request!99Resolve "The flag 'execute_only' cannot be placed in a config file"
Pipeline #
......@@ -298,7 +298,7 @@ def parse_config_file(parsers, args, args_dictionary, keywords, skips):
skip_keywords = tuple(['skip_' + k.replace('-', '_') for k in skips])
for keyword in keywords + skip_keywords:
for keyword in keywords + skip_keywords + ('execute_only',):
take_from_config_or_command_line(args, config, keyword,
parser.get_default(keyword), required=False, is_resource=False)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment