mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix ansible-test base branch usage on Shippable.
This commit is contained in:
parent
634d6894e3
commit
47887a2edd
1 changed files with 1 additions and 1 deletions
|
@ -1136,7 +1136,7 @@ class SanityConfig(TestConfig):
|
||||||
self.base_branch = args.base_branch # str
|
self.base_branch = args.base_branch # str
|
||||||
elif is_shippable():
|
elif is_shippable():
|
||||||
try:
|
try:
|
||||||
self.base_branch = os.environ['BASE_BRANCH'] # str
|
self.base_branch = 'origin/%s' % os.environ['BASE_BRANCH'] # str
|
||||||
except KeyError as ex:
|
except KeyError as ex:
|
||||||
raise MissingEnvironmentVariable(name=ex.args[0])
|
raise MissingEnvironmentVariable(name=ex.args[0])
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue