diff options
author | Matt Clay <matt@mystile.com> | 2017-05-17 07:49:04 +0200 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2017-05-17 08:56:40 +0200 |
commit | 036ba7eeec3062e629bd550c14370939e9b1eb8c (patch) | |
tree | 7114a534e0f97a4d4ea3eb380e60654006286451 /test/utils/shippable/shippable.sh | |
parent | Fix nxos ospf and Unit test (#24613) (diff) | |
download | ansible-036ba7eeec3062e629bd550c14370939e9b1eb8c.tar.xz ansible-036ba7eeec3062e629bd550c14370939e9b1eb8c.zip |
Clean up Shippable tools and update job handling.
- Tools are now in a tools subdirectory.
- Removed obsolete ansible-core-ci tool.
- Added run.py for starting new CI runs.
- Improved handling of run IDs and URLs.
- General code cleanup and docs updates.
- Nightly CI runs use complete coverage.
Diffstat (limited to 'test/utils/shippable/shippable.sh')
-rwxr-xr-x | test/utils/shippable/shippable.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/utils/shippable/shippable.sh b/test/utils/shippable/shippable.sh index 84fc01785e..92b3700870 100755 --- a/test/utils/shippable/shippable.sh +++ b/test/utils/shippable/shippable.sh @@ -24,6 +24,11 @@ pip list --disable-pip-version-check export PATH="test/runner:${PATH}" export PYTHONIOENCODING='utf-8' +if [ "${JOB_TRIGGERED_BY_NAME:-}" == "nightly-trigger" ]; then + COVERAGE=yes + COMPLETE=yes +fi + if [ -n "${COVERAGE:-}" ]; then # on-demand coverage reporting triggered by setting the COVERAGE environment variable to a non-empty value export COVERAGE="--coverage" |