From ac54ac618cf7a44f504a222142b749f18f4e2cef Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Wed, 2 Dec 2015 14:48:27 -0800 Subject: [PATCH] Something's strange... let's see if python2.6 is really the same now... --- test/integration/roles/test_template/tasks/main.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/test/integration/roles/test_template/tasks/main.yml b/test/integration/roles/test_template/tasks/main.yml index a35b93d9d9..28477d44e5 100644 --- a/test/integration/roles/test_template/tasks/main.yml +++ b/test/integration/roles/test_template/tasks/main.yml @@ -48,11 +48,13 @@ - name: copy known good into place copy: src=foo.txt dest={{output_dir}}/foo.txt - when: pyver.stdout != '2.6' -- name: copy known good into place - copy: src=foo-py26.txt dest={{output_dir}}/foo.txt - when: pyver.stdout == '2.6' +# Seems that python-2.6 now outputs the same format as everywhere else? +# when: pyver.stdout != '2.6' + +#- name: copy known good into place +# copy: src=foo-py26.txt dest={{output_dir}}/foo.txt +# when: pyver.stdout == '2.6' - name: compare templated file to known good shell: diff {{output_dir}}/foo.templated {{output_dir}}/foo.txt