Python将公共代码保存在文件中

时间:2016-02-03 11:52:39

标签: python pytest pytest-django

我有一些在我所有的PyTest中使用的常用代码。我想将完整的代码保存在任何文件中并在运行时加载它。是否可以使用Python?

例如:

def teardown_method(self, method):
 print "This is tear down method"
def setup_method(self, method):
 print "This is setup method"

1 个答案:

答案 0 :(得分:0)

除了简单地使用import之外,对于您展示的示例(设置/拆解),您通常会使用pytest fixture,并将它们放在conftest.py中在测试之间分享它们。