diff options
author | Matt Clay <matt@mystile.com> | 2020-03-23 17:39:19 +0100 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2020-03-23 21:04:56 +0100 |
commit | d049888a92eb4d4b7002f7071b54812461dc99a1 (patch) | |
tree | fd872c29a6f6e153426fa4e89ac4b6a985ddd600 /hacking | |
parent | Address fixme and handle filter/test errors for collections better (#68047) (diff) | |
download | ansible-d049888a92eb4d4b7002f7071b54812461dc99a1.tar.xz ansible-d049888a92eb4d4b7002f7071b54812461dc99a1.zip |
Update Shippable hacking scripts default branch.
Diffstat (limited to 'hacking')
-rw-r--r-- | hacking/shippable/README.md | 2 | ||||
-rwxr-xr-x | hacking/shippable/get_recent_coverage_runs.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hacking/shippable/README.md b/hacking/shippable/README.md index 2505c98f48..1713f869f4 100644 --- a/hacking/shippable/README.md +++ b/hacking/shippable/README.md @@ -37,7 +37,7 @@ Reducing incidental test coverage, and eventually removing incidental tests invo ```shell hacking/shippable/get_recent_coverage_runs.py <optional branch name> ``` - For now the branch name defaults to `temp-2.10-devel`. + The branch name defaults to `devel`. 2. Download code coverage data from Shippable for local analysis. Example: ```shell diff --git a/hacking/shippable/get_recent_coverage_runs.py b/hacking/shippable/get_recent_coverage_runs.py index e05c1061f2..ccf3bd1e5b 100755 --- a/hacking/shippable/get_recent_coverage_runs.py +++ b/hacking/shippable/get_recent_coverage_runs.py @@ -24,7 +24,7 @@ from ansible.utils.color import stringc import requests import sys -BRANCH = 'temp-2.10-devel' +BRANCH = 'devel' if len(sys.argv) > 1: BRANCH = sys.argv[1] |