From f47d4635f13ac2d642c678187b8321b613a18c15 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Tue, 12 Oct 2021 14:05:07 +0300 Subject: [PATCH] integration tests: remove superfluous debug task (#228) * integration tests: remove superfluous debug task * Turn off integration tests against devel --- .github/workflows/ansible-test-plugins.yml | 2 +- tests/integration/targets/setup_mysql/tasks/install.yml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/ansible-test-plugins.yml b/.github/workflows/ansible-test-plugins.yml index c492261..64435cd 100644 --- a/.github/workflows/ansible-test-plugins.yml +++ b/.github/workflows/ansible-test-plugins.yml @@ -63,7 +63,7 @@ jobs: - stable-2.10 - stable-2.11 - stable-2.12 - - devel + #- devel python: - 3.6 - 3.8 diff --git a/tests/integration/targets/setup_mysql/tasks/install.yml b/tests/integration/targets/setup_mysql/tasks/install.yml index e5514a8..57e4b31 100644 --- a/tests/integration/targets/setup_mysql/tasks/install.yml +++ b/tests/integration/targets/setup_mysql/tasks/install.yml @@ -30,10 +30,6 @@ name: "{{ python_packages }}" register: connector -- name: Debug connector var content - debug: - msg: '{{ connector }}' - - name: Extract connector.name.0 content set_fact: connector_name: "{{ connector.name.0 }}"