We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e5354c commit 9205f63Copy full SHA for 9205f63
tests/integration/targets/ensure_github_pat/tasks/main.yml
@@ -1,10 +1,5 @@
1
---
2
-- name: Ensure the integration_config.yml file exists
3
- ansible.builtin.stat:
4
- path: /home/zuul-worker/.ansible/collections/ansible_collections/ansible/mcp/tests/integration/integration_config.yml
5
- register: st
6
-
7
- name: Validate that the file exists
8
- ansible.builtin.fail:
9
- msg: "The file integration_config.yml does not exist."
10
- when: not st.stat.exists
+ ansible.builtin.assert:
+ that:
+ - ansible_mcp_github_pat is defined
0 commit comments