diff options
author | Alan Rominger <arominge@redhat.com> | 2023-09-06 16:57:11 +0200 |
---|---|---|
committer | Dave <dmz.oneill@gmail.com> | 2024-02-21 16:11:12 +0100 |
commit | d5753818a0f1cd98dc0dddc1d60278cc7cd464a9 (patch) | |
tree | ee00420ddc9a7b6df58da49054621265d0609bbe /awx_collection | |
parent | added # -*-coding:utf-8-*- to test if this fixes issues with users being unab... (diff) | |
download | awx-d5753818a0f1cd98dc0dddc1d60278cc7cd464a9.tar.xz awx-d5753818a0f1cd98dc0dddc1d60278cc7cd464a9.zip |
Stop using the bulky test-playbooks in tests where possible
Diffstat (limited to 'awx_collection')
3 files changed, 14 insertions, 14 deletions
diff --git a/awx_collection/tests/integration/targets/inventory_source_update/tasks/main.yml b/awx_collection/tests/integration/targets/inventory_source_update/tasks/main.yml index ba0c659544..02e4d2e773 100644 --- a/awx_collection/tests/integration/targets/inventory_source_update/tasks/main.yml +++ b/awx_collection/tests/integration/targets/inventory_source_update/tasks/main.yml @@ -34,7 +34,7 @@ name: "{{ project_name }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: true - name: Create an Inventory diff --git a/awx_collection/tests/integration/targets/project/tasks/main.yml b/awx_collection/tests/integration/targets/project/tasks/main.yml index 407292ec23..6dbe5e2e73 100644 --- a/awx_collection/tests/integration/targets/project/tasks/main.yml +++ b/awx_collection/tests/integration/targets/project/tasks/main.yml @@ -31,7 +31,7 @@ name: "{{ project_name1 }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: true register: result @@ -44,7 +44,7 @@ name: "{{ project_name1 }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: true state: exists register: result @@ -58,7 +58,7 @@ name: "{{ project_name1 }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: true state: exists request_timeout: .001 @@ -75,7 +75,7 @@ name: "{{ project_name1 }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: true state: absent register: result @@ -89,7 +89,7 @@ name: "{{ project_name1 }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: true state: exists register: result @@ -103,7 +103,7 @@ name: "{{ project_name1 }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: false register: result ignore_errors: true @@ -137,7 +137,7 @@ name: "{{ project_name2 }}" organization: "{{ org_name }}" scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples scm_credential: "{{ cred_name }}" check_mode: true @@ -162,7 +162,7 @@ name: "{{ project_name2 }}" organization: Non_Existing_Org scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples scm_credential: "{{ cred_name }}" register: result ignore_errors: true @@ -179,7 +179,7 @@ name: "{{ project_name2 }}" organization: "{{ org_name }}" scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples scm_credential: Non_Existing_Credential register: result ignore_errors: true @@ -197,7 +197,7 @@ organization: Default scm_type: git scm_branch: empty_branch - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples allow_override: true register: result @@ -211,7 +211,7 @@ organization: Default scm_type: git scm_branch: empty_branch - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples allow_override: true wait: true update_project: true @@ -264,7 +264,7 @@ name: "{{ project_name3 }}" organization: Default scm_type: archive - scm_url: https://github.com/ansible/test-playbooks/archive/refs/tags/1.0.0.tar.gz + scm_url: https://github.com/ansible/ansible-tower-samples/archive/refs/tags/1.0.0.tar.gz wait: true update_project: true register: result diff --git a/awx_collection/tests/integration/targets/project_update/tasks/main.yml b/awx_collection/tests/integration/targets/project_update/tasks/main.yml index 65191be65d..451fe4ff68 100644 --- a/awx_collection/tests/integration/targets/project_update/tasks/main.yml +++ b/awx_collection/tests/integration/targets/project_update/tasks/main.yml @@ -13,7 +13,7 @@ name: "{{ project_name1 }}" organization: Default scm_type: git - scm_url: https://github.com/ansible/test-playbooks + scm_url: https://github.com/ansible/ansible-tower-samples wait: false register: project_create_result |