-
Notifications
You must be signed in to change notification settings - Fork 107
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
4 changed files
with
64 additions
and
10 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,13 +1,62 @@ | ||
# SPDX-License-Identifier: MIT | ||
export LSR_MOLECULE_DEPS='-rmolecule_requirements.txt' | ||
# | ||
# Use this file to specify custom configuration for a project. Generally, this | ||
# involves the modification of the content of LSR_* environment variables, see | ||
# | ||
# * .travis/preinstall: | ||
# | ||
# - LSR_EXTRA_PACKAGES | ||
# | ||
# * .travis/runtox: | ||
# | ||
# - LSR_ANSIBLES | ||
# - LSR_MSCENARIOS | ||
# | ||
# * .travis/runcoveralls.sh: | ||
# | ||
# - LSR_PUBLISH_COVERAGE | ||
# | ||
# Environment variables that not start with LSR_* but have influence on CI | ||
# process: | ||
# | ||
# * run_pylint.py: | ||
# | ||
# - RUN_PYLINT_INCLUDE | ||
# - RUN_PYLINT_EXCLUDE | ||
# - RUN_PYLINT_DISABLED | ||
# | ||
# * .travis/runblack.sh: | ||
# | ||
# - RUN_BLACK_INCLUDE | ||
# - RUN_BLACK_EXCLUDE | ||
# - RUN_BLACK_DISABLED | ||
# | ||
# * .travis/runflake8.sh: | ||
# | ||
# - RUN_FLAKE8_DISABLED | ||
# | ||
|
||
LSR_EXTRA_PACKAGES='python3-selinux' | ||
# Allow publishing coverage reports: | ||
export LSR_PUBLISH_COVERAGE=yes | ||
|
||
case "${TRAVIS_PYTHON_VERSION}" in | ||
3.6|"") | ||
# Set these also if we are running locally: | ||
export LSR_TEXTRA_DEPS='PyYAML' | ||
export LSR_TEXTRA_DIR='tests' | ||
export LSR_TEXTRA_CMD='./ensure_non_running_provider.py' | ||
;; | ||
esac | ||
## | ||
# lsr_runcoveralls_hook ARGS | ||
# | ||
# ARGS - see .travis/runcoveralls.sh | ||
# | ||
# Called from .travis/runcoveralls.sh. | ||
function lsr_runcoveralls_hook() { | ||
# Add custom commands here. | ||
return 0 | ||
} | ||
|
||
## | ||
# lsr_runsyspycmd_hook ARGS | ||
# | ||
# ARGS - see .travis/runsyspycmd.sh | ||
# | ||
# Called from .travis/runsyspycmd.sh. | ||
function lsr_runsyspycmd_hook() { | ||
# Add custom commands here. | ||
return 0 | ||
} |
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,3 +1,4 @@ | ||
# SPDX-License-Identifier: MIT | ||
|
||
# Write requirements for running your custom commands in tox here: | ||
PyYAML |
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,4 @@ | ||
# SPDX-License-Identifier: MIT | ||
|
||
# Write extra requirements for running molecule here: | ||
jmespath |