-
Notifications
You must be signed in to change notification settings - Fork 666
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for broken galaxy.yml detection
- Loading branch information
Showing
8 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: goodies | ||
name_space: acme | ||
version: 1.0.0 | ||
readme: README.md | ||
authors: | ||
- Red Hat | ||
description: Acme Goodies Collection | ||
build_ignore: | ||
- "*.egg-info" | ||
- .DS_Store | ||
- .eggs | ||
- .gitignore | ||
- .mypy_cache | ||
- .pytest_cache | ||
- .stestr | ||
- .stestr.conf | ||
- .tox | ||
- .vscode | ||
- MANIFEST.in | ||
- build | ||
- dist | ||
- doc | ||
- report.html | ||
- setup.cfg | ||
- setup.py | ||
- "tests/unit/*.*" | ||
- README.rst | ||
- tox.ini | ||
|
||
repository: https://opendev.org/openstack/tripleo-repos | ||
license_file: LICENSE | ||
tags: | ||
- tools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
7 changes: 7 additions & 0 deletions
7
tests/fixtures/resources/broken-collection/molecule/default/converge.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
- name: Converge | ||
hosts: localhost | ||
tasks: | ||
- name: "Include sample role from current collection" | ||
ansible.builtin.include_role: | ||
name: acme.goodies.get_rich |
11 changes: 11 additions & 0 deletions
11
tests/fixtures/resources/broken-collection/molecule/default/molecule.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
dependency: | ||
name: galaxy | ||
driver: | ||
name: default | ||
platforms: | ||
- name: instance | ||
provisioner: | ||
name: ansible | ||
verifier: | ||
name: ansible |
3 changes: 3 additions & 0 deletions
3
tests/fixtures/resources/broken-collection/roles/get_rich/tasks/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- name: Some task inside foo.bar collection | ||
ansible.builtin.debug: | ||
msg: "hello world!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters