You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class GitWrapper(object):
|
|
|
|
@staticmethod
|
|
def pull(*args, **kwargs):
|
|
"""Fake git pull"""
|
|
return 0
|
|
|
|
@staticmethod
|
|
def clone(*args, **kwargs):
|
|
"""Fake git clone"""
|
|
return 0
|
|
|
|
@staticmethod
|
|
def deploy(*args, **kwargs):
|
|
"""Fake deploy"""
|
|
return 0
|