本文整理汇总了Python中app.master.build.Build._max_executors_per_slave方法的典型用法代码示例。如果您正苦于以下问题:Python Build._max_executors_per_slave方法的具体用法?Python Build._max_executors_per_slave怎么用?Python Build._max_executors_per_slave使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app.master.build.Build
的用法示例。
在下文中一共展示了Build._max_executors_per_slave方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_allocate_slave_increments_by_per_slave_when_max_not_inf_and_less_than_num
# 需要导入模块: from app.master.build import Build [as 别名]
# 或者: from app.master.build.Build import _max_executors_per_slave [as 别名]
def test_allocate_slave_increments_by_per_slave_when_max_not_inf_and_less_than_num(self):
build = Build(BuildRequest({}))
build._max_executors_per_slave = 5
slave = Mock()
slave.num_executors = 10
build.allocate_slave(slave)
self.assertEqual(build._num_executors_allocated, 5, "Should be incremented by num executors")