本文整理匯總了Python中_pytest.config.Conftest.importconftest方法的典型用法代碼示例。如果您正苦於以下問題:Python Conftest.importconftest方法的具體用法?Python Conftest.importconftest怎麽用?Python Conftest.importconftest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類_pytest.config.Conftest
的用法示例。
在下文中一共展示了Conftest.importconftest方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_conftestcutdir
# 需要導入模塊: from _pytest.config import Conftest [as 別名]
# 或者: from _pytest.config.Conftest import importconftest [as 別名]
def test_conftestcutdir(testdir):
conf = testdir.makeconftest("")
p = testdir.mkdir("x")
conftest = Conftest(confcutdir=p)
conftest.setinitial([testdir.tmpdir])
l = conftest.getconftestmodules(p)
assert len(l) == 0
l = conftest.getconftestmodules(conf.dirpath())
assert len(l) == 0
assert conf not in conftest._conftestpath2mod
# but we can still import a conftest directly
conftest.importconftest(conf)
l = conftest.getconftestmodules(conf.dirpath())
assert l[0].__file__.startswith(str(conf))
# and all sub paths get updated properly
l = conftest.getconftestmodules(p)
assert len(l) == 1
assert l[0].__file__.startswith(str(conf))