Lines Matching defs:args

54 args = parser.parse_args()
56 env = Environment(loader=FileSystemLoader(path.dirname(args.template)),
59 template = env.get_template(path.basename(args.template))
62 values['ci_job_id'] = args.ci_job_id
63 values['container_cmd'] = args.container_cmd
64 values['initramfs_url'] = args.initramfs_url
65 values['job_success_regex'] = args.job_success_regex
66 values['job_warn_regex'] = args.job_warn_regex
67 values['kernel_url'] = args.kernel_url
68 values['log_level'] = args.log_level
69 values['poweroff_delay'] = args.poweroff_delay
70 values['session_end_regex'] = args.session_end_regex
71 values['session_reboot_regex'] = args.session_reboot_regex
72 values['tags'] = args.tags
73 values['template'] = args.template
74 values['timeout_boot_minutes'] = args.timeout_boot_minutes
75 values['timeout_boot_retries'] = args.timeout_boot_retries
76 values['timeout_first_minutes'] = args.timeout_first_minutes
77 values['timeout_first_retries'] = args.timeout_first_retries
78 values['timeout_minutes'] = args.timeout_minutes
79 values['timeout_overall_minutes'] = args.timeout_overall_minutes
80 values['timeout_retries'] = args.timeout_retries
81 if len(args.job_volume_exclusions) > 0:
82 exclusions = args.job_volume_exclusions.split(",")
84 if args.volume is not None:
85 values['volumes'] = args.volume
86 if args.mount_volume is not None:
87 values['mount_volumes'] = args.mount_volume
88 values['working_dir'] = args.working_dir
90 assert(len(args.local_container) > 0)
91 values['local_container'] = args.local_container.replace(
99 f = open(path.splitext(path.basename(args.template))[0], "w")