-
Notifications
You must be signed in to change notification settings - Fork 664
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
148 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,3 +26,4 @@ tools/test-schema/node_modules | |
site | ||
.DS_Store | ||
src/molecule/_version.py | ||
.vscode |
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
9 changes: 9 additions & 0 deletions
9
src/molecule/test/resources/sample-collection-venv-with-gitignore/.gitignore
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,9 @@ | ||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
source/ |
7 changes: 7 additions & 0 deletions
7
.../resources/sample-collection-venv-with-gitignore/extensions/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
.../resources/sample-collection-venv-with-gitignore/extensions/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 |
31 changes: 31 additions & 0 deletions
31
src/molecule/test/resources/sample-collection-venv-with-gitignore/galaxy.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,31 @@ | ||
name: goodies | ||
namespace: 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 |
3 changes: 3 additions & 0 deletions
3
...lecule/test/resources/sample-collection-venv-with-gitignore/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!" |
7 changes: 7 additions & 0 deletions
7
...sources/sample-collection-venv-without-gitignore/extensions/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
...sources/sample-collection-venv-without-gitignore/extensions/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 |
31 changes: 31 additions & 0 deletions
31
src/molecule/test/resources/sample-collection-venv-without-gitignore/galaxy.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,31 @@ | ||
name: goodies | ||
namespace: 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 |
3 changes: 3 additions & 0 deletions
3
...ule/test/resources/sample-collection-venv-without-gitignore/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!" |