diff options
author | Matt Martz <matt@sivel.net> | 2018-01-03 19:10:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 19:10:24 +0100 |
commit | 70b31abf853d1f3e2b2013446642745623744208 (patch) | |
tree | 72cebd9267f4e96ba74baf0a3bd7a0f1a95a8a82 /test/integration/targets/win_iis_webbinding | |
parent | windows: Add IPv6 address support and docs to go with it (#34072) (diff) | |
download | ansible-70b31abf853d1f3e2b2013446642745623744208.tar.xz ansible-70b31abf853d1f3e2b2013446642745623744208.zip |
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
Diffstat (limited to 'test/integration/targets/win_iis_webbinding')
-rw-r--r-- | test/integration/targets/win_iis_webbinding/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/integration/targets/win_iis_webbinding/tasks/main.yml b/test/integration/targets/win_iis_webbinding/tasks/main.yml index a561112a46..3c918cb826 100644 --- a/test/integration/targets/win_iis_webbinding/tasks/main.yml +++ b/test/integration/targets/win_iis_webbinding/tasks/main.yml @@ -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') |