本文整理汇总了Python中bumpr.releaser.Releaser.push方法的典型用法代码示例。如果您正苦于以下问题:Python Releaser.push方法的具体用法?Python Releaser.push怎么用?Python Releaser.push使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bumpr.releaser.Releaser
的用法示例。
在下文中一共展示了Releaser.push方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_push_no_commit
# 需要导入模块: from bumpr.releaser import Releaser [as 别名]
# 或者: from bumpr.releaser.Releaser import push [as 别名]
def test_push_no_commit(workspace, mocker):
config = Config({'file': 'fake.py', 'vcs': 'fake', 'push': True, 'commit': False})
releaser = Releaser(config)
vcs = mocker.patch.object(releaser, 'vcs')
releaser.push()
assert not vcs.push.called
示例2: test_push_disabled_by_default
# 需要导入模块: from bumpr.releaser import Releaser [as 别名]
# 或者: from bumpr.releaser.Releaser import push [as 别名]
def test_push_disabled_by_default(workspace, mocker):
config = Config({'file': 'fake.py', 'vcs': 'fake'})
releaser = Releaser(config)
vcs = mocker.patch.object(releaser, 'vcs')
releaser.push()
assert not vcs.push.called