mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-08-16 19:11:42 -07:00
[stable-9] Fix/improve tests (#9861)
Fix/improve tests (#9859)
* Fix tests.
* Improve callback tests.
(cherry picked from commit eff25c8a6e
)
This commit is contained in:
parent
0ccb961ff7
commit
de754eacbc
26 changed files with 184 additions and 154 deletions
|
@ -25,10 +25,10 @@
|
|||
- name: install cron package
|
||||
package:
|
||||
name: '{{ cron_pkg }}'
|
||||
when: cron_pkg | default(false, true)
|
||||
when: (cron_pkg | default(false, true)) is truthy
|
||||
register: cron_package_installed
|
||||
until: cron_package_installed is success
|
||||
- when: faketime_pkg | default(false, true)
|
||||
- when: (faketime_pkg | default(false, true)) is truthy
|
||||
block:
|
||||
- name: install cron and faketime packages
|
||||
package:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue