Disable push during test

This commit is contained in:
jpic 2020-02-13 13:09:33 +01:00
parent 88f49aa094
commit 7926bd6a2e

View File

@ -31,6 +31,12 @@ async def test(*args, **kwargs):
continue continue
podfile = Podfile.factory(candidate) podfile = Podfile.factory(candidate)
# disable push
for name, container in podfile.containers.items():
commit = container.visitor('commit')
if commit:
commit.push = False
output.print( output.print(
'\n\x1b[1;38;5;160;48;5;118m BUILD START \x1b[0m' '\n\x1b[1;38;5;160;48;5;118m BUILD START \x1b[0m'
+ ' ' + podfile.path + '\n' + ' ' + podfile.path + '\n'