-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issue with installation of binary files
- Loading branch information
Showing
24 changed files
with
364 additions
and
298 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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
--- | ||
skip_list: | ||
- role-name | ||
- fqcn[action-core] # Use FQCN for builtin module actions | ||
- fqcn[action] # Use FQCN for module actions, such `<namespace>.<collection>.docker_container`. (warning) | ||
- name[casing] # All names should start with an uppercase letter. (warning) | ||
- name[template] # Jinja templates should only be at the end of 'name' |
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
.tox | ||
__pycache__ | ||
.galaxy_install_info | ||
*kate-swp | ||
__pycache__ | ||
|
||
.cache |
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
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
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
TOX_ARGS= | ||
. hooks/_tox_base | ||
|
||
if [ -n "${TOX_SCENARIO}" ] | ||
then | ||
TOX_ARGS="--scenario-name ${TOX_SCENARIO}" | ||
fi | ||
|
||
tox -e ${TOX_PYTHON}-${TOX_ANSIBLE} -- molecule converge ${TOX_ARGS} | ||
tox ${TOX_OPTS} -- molecule converge ${TOX_ARGS} |
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
TOX_ARGS= | ||
. hooks/_tox_base | ||
|
||
if [ -n "${TOX_SCENARIO}" ] | ||
then | ||
TOX_ARGS="--scenario-name ${TOX_SCENARIO}" | ||
fi | ||
|
||
tox -e ${TOX_PYTHON}-${TOX_ANSIBLE} -- molecule destroy ${TOX_ARGS} | ||
tox ${TOX_OPTS} -- molecule destroy ${TOX_ARGS} |
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
TOX_ARGS= | ||
. hooks/_tox_base | ||
|
||
if [ -n "${TOX_SCENARIO}" ] | ||
then | ||
TOX_ARGS="--scenario-name ${TOX_SCENARIO}" | ||
fi | ||
|
||
tox -e ${TOX_PYTHON}-${TOX_ANSIBLE} -- molecule lint ${TOX_ARGS} | ||
tox ${TOX_OPTS} -- molecule lint ${TOX_ARGS} |
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 |
---|---|---|
@@ -1,10 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
TOX_ARGS= | ||
. hooks/_tox_base | ||
|
||
if [ -n "${TOX_SCENARIO}" ] | ||
then | ||
TOX_ARGS="--scenario-name ${TOX_SCENARIO}" | ||
fi | ||
|
||
tox -e ${TOX_PYTHON}-${TOX_ANSIBLE} -- molecule verify ${TOX_ARGS} | ||
tox ${TOX_OPTS} -- molecule verify ${TOX_ARGS} |
Oops, something went wrong.