Skip to content

Commit b07941a

Browse files
authored
Move CI test code to codebase rather than .github (#549)
* Move CI test code to codebase rather than .github * Fixes to linting and doc paths * Trigger Git Commit
1 parent 3839b01 commit b07941a

File tree

197 files changed

+8
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+8
-10
lines changed

.github/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions

.github/tests/collections/ansible_collections/redhat_cop/controller_configuration

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/ci_standalone_versioned.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
run: ansible-galaxy collection install -r .github/collections/requirements.yml
6464

6565
- name: "Perform playbook tests"
66-
run: ansible-playbook .github/tests/configure_controller.yml -e controller_hostname=localhost:8043 -v
66+
run: ansible-playbook tests/configure_controller.yml -e controller_hostname=localhost:8043 -v
6767

6868
- name: "Perform export model playbook tests"
69-
run: ansible-playbook .github/tests/configure_controller_export_model.yml -e controller_hostname=localhost:8043 -v
69+
run: ansible-playbook tests/configure_controller_export_model.yml -e controller_hostname=localhost:8043 -v
7070
...

roles/filetree_create/automatetheautomation.md

Lines changed: 1 addition & 1 deletion
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/tests/configure_controller.yml renamed to tests/configure_controller.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
ignore_errors: true
5959

6060
- name: Wait for the controller node to be up
61-
uri:
61+
ansible.builtin.uri:
6262
url: "https://{{ controller_hostname }}/api/v2/mesh_visualizer/"
6363
user: "{{ controller_username }}"
6464
password: "{{ controller_password }}"

.github/tests/configure_controller_export_model.yml renamed to tests/configure_controller_export_model.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
extensions: ["yml"]
4545

4646
- name: Wait for the controller to be up
47-
uri:
47+
ansible.builtin.uri:
4848
url: "https://{{ controller_hostname }}/api/v2/mesh_visualizer/"
4949
user: "{{ controller_username }}"
5050
password: "{{ controller_password }}"
@@ -59,7 +59,6 @@
5959
delay: 5
6060

6161

62-
6362
roles:
6463
- {role: organizations, when: controller_organizations is defined, tags: organizations}
6564
- {role: users, when: controller_user_accounts is defined, tags: users}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)