mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Fix ansible-test base branch usage on Shippable.
This commit is contained in:
@@ -1136,7 +1136,7 @@ class SanityConfig(TestConfig):
|
||||
self.base_branch = args.base_branch # str
|
||||
elif is_shippable():
|
||||
try:
|
||||
self.base_branch = os.environ['BASE_BRANCH'] # str
|
||||
self.base_branch = 'origin/%s' % os.environ['BASE_BRANCH'] # str
|
||||
except KeyError as ex:
|
||||
raise MissingEnvironmentVariable(name=ex.args[0])
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user