Update Shippable hacking scripts default branch.

This commit is contained in:
Matt Clay 2020-03-23 09:39:19 -07:00
parent ee6413af47
commit d049888a92
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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]