cd27982959
* fixing the exception import from tower modules * Adding tests for checking tower modules are failing with correct msg * fixed failing tests * fixed failing test in tower_team
26 lines
No EOL
602 B
YAML
26 lines
No EOL
602 B
YAML
- name: Launch a Job Template
|
|
tower_job_launch:
|
|
job_template: "Demo Job Template"
|
|
inventory: "Demo Inventory"
|
|
credential: "Demo Credential"
|
|
register: job
|
|
|
|
- assert:
|
|
that:
|
|
- "job is changed"
|
|
- "job.status == 'pending'"
|
|
|
|
- name: Wait for the Job to finish
|
|
tower_job_wait:
|
|
job_id: "{{ job.id }}"
|
|
timeout: 60
|
|
|
|
- name: Check module fails with correct msg
|
|
tower_job_wait:
|
|
job_id: "99999999"
|
|
register: result
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- "result.msg =='Unable to wait, no job_id 99999999 found: The requested object could not be found.'" |