當前位置: 首頁>>代碼示例>>Python>>正文


Python Conftest.importconftest方法代碼示例

本文整理匯總了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))
開發者ID:burrowsa,項目名稱:pytest,代碼行數:20,代碼來源:test_conftest.py


注:本文中的_pytest.config.Conftest.importconftest方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。