From d049888a92eb4d4b7002f7071b54812461dc99a1 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 23 Mar 2020 09:39:19 -0700 Subject: [PATCH] Update Shippable hacking scripts default branch. --- hacking/shippable/README.md | 2 +- 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 2505c98f48e..1713f869f42 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 ``` - 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 e05c1061f24..ccf3bd1e5bd 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]