when I run playbook with --check option I see names only for "ok" or "changed" tasks (trying with ansible 2.5 - 2.9)
TASK [playbook : taskN] ************************************************************************************************
ok: [host00.domain]
TASK [playbook : taskN+1] ************************************************************************************************
ok: [host00.domain]
TASK [playbook : taskN+2] ************************************************************************************************
changed: [host00.domain] => (item=item_stuff)
PLAY RECAP ************************************************************************************************
host00.domain : ok=6 changed=2 unreachable=0 failed=0 skipped=2 rescued=0 ignored=0
I see "skipped=2", but which exactly tasks were skipped ? -vvv doesn't help
UPD :
example of skipped task:
tasks/main.yml
- import_tasks: taskF.yml
when: "'host_group' in group_names"
tasks/taskF.yml
- name: test network
shell: echo AAA
tags: full, test