From 9bdfba5e5c1bb7b3be8cf9aceb1005b9ffdb805b Mon Sep 17 00:00:00 2001 From: Chris Hawk Date: Fri, 20 Jun 2025 14:44:45 -0700 Subject: [PATCH] Fix lint errors --- .../integration/targets/gcp_compute_instance/tasks/gvnic.yml | 3 ++- tests/integration/targets/inventory_gce/playbooks/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/integration/targets/gcp_compute_instance/tasks/gvnic.yml b/tests/integration/targets/gcp_compute_instance/tasks/gvnic.yml index ad2338fe..bc5db37c 100644 --- a/tests/integration/targets/gcp_compute_instance/tasks/gvnic.yml +++ b/tests/integration/targets/gcp_compute_instance/tasks/gvnic.yml @@ -3,7 +3,8 @@ ansible.builtin.debug: msg: "Testing {{ item.key }} scenario" -- block: +- name: Test GVNIC scenarios + block: - name: Create disk google.cloud.gcp_compute_disk: name: "{{ resource_prefix }}-{{ item.key }}" diff --git a/tests/integration/targets/inventory_gce/playbooks/test.yml b/tests/integration/targets/inventory_gce/playbooks/test.yml index da119970..aaa539af 100644 --- a/tests/integration/targets/inventory_gce/playbooks/test.yml +++ b/tests/integration/targets/inventory_gce/playbooks/test.yml @@ -12,12 +12,12 @@ content: "{{ lookup('template', '../templates/inventory.yml.j2') }}" mode: preserve - - name: slurp + - name: TEST | slurp ansible.builtin.slurp: src: "../{{ inventory_filename }}" register: _inv - - name: debug + - name: TEST | debug ansible.builtin.debug: msg: "{{ _inv.content | b64decode }}" verbosity: 3