mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix tests as filters 5 (#34406)
* Address recent tests as filters in win_iis_webbinding tests * Make no-tests-as-filters.py so that it is executed
This commit is contained in:
@@ -12,9 +12,9 @@
|
||||
- include_tasks: setup.yml
|
||||
- include_tasks: http.yml
|
||||
- include_tasks: https-lt6.2.yml
|
||||
when: os_version.stdout_lines[0] | version_compare('6.2','lt')
|
||||
when: os_version.stdout_lines[0] is version('6.2','lt')
|
||||
- include_tasks: https-ge6.2.yml
|
||||
when: os_version.stdout_lines[0] | version_compare('6.2','ge')
|
||||
when: os_version.stdout_lines[0] is version('6.2','ge')
|
||||
- include_tasks: failures.yml
|
||||
|
||||
always:
|
||||
@@ -59,4 +59,4 @@
|
||||
- name: reboot after feature install
|
||||
win_reboot:
|
||||
when: feature_uninstall.reboot_required
|
||||
when: os_version.stdout_lines[0] | version_compare('6.1','gt')
|
||||
when: os_version.stdout_lines[0] is version('6.1','gt')
|
||||
|
||||
0
test/sanity/code-smell/no-tests-as-filters.py
Normal file → Executable file
0
test/sanity/code-smell/no-tests-as-filters.py
Normal file → Executable file
Reference in New Issue
Block a user