Chandan Singh pushed to branch chandan/fix-badge-subprocess-error at BuildStream / buildstream
Commits:
-
c8cd24b9
by Jonathan Maw at 2019-02-18T17:37:00Z
-
de70f8c0
by Jonathan Maw at 2019-02-18T18:57:45Z
-
00b86b19
by Chandan Singh at 2019-02-18T18:59:31Z
2 changed files:
Changes:
... | ... | @@ -160,7 +160,7 @@ tests-wsl: |
160 | 160 |
|
161 | 161 |
script:
|
162 | 162 |
- "${TEST_COMMAND}"
|
163 |
- when: manual
|
|
163 |
+ allow_failure: true
|
|
164 | 164 |
|
165 | 165 |
# Automatically build documentation for every commit, we want to know
|
166 | 166 |
# if building documentation fails even if we're not deploying it.
|
... | ... | @@ -96,7 +96,7 @@ def parse_tag(tag): |
96 | 96 |
def guess_version(release):
|
97 | 97 |
try:
|
98 | 98 |
tags_output = subprocess.check_output(['git', 'tag'])
|
99 |
- except CalledProcessError:
|
|
99 |
+ except subprocess.CalledProcessError:
|
|
100 | 100 |
return (0, 0, 0)
|
101 | 101 |
|
102 | 102 |
# Parse the `git tag` output into a list of integer tuples
|