首页 > 编程语言 >【Python_pytest】出错:PytestAssertRewriteWarning: Module already imported so cannot be rewritten: pytest

【Python_pytest】出错:PytestAssertRewriteWarning: Module already imported so cannot be rewritten: pytest

时间:2022-11-03 14:46:12浏览次数:46  
标签:already imported pytest Module PytestAssertRewriteWarning cannot check

pytest测试时pytest_check模块错误

错误信息:

PytestAssertRewriteWarning: Module already imported so cannot be rewritten: pytest_check
    self._mark_plugins_for_rewrite(hook)

 

 

解决方法:添加标记命令

 

pytest.main(['-v' ,'-W', 'ignore:Module alreadyimported:pytest.PytestWarning'])

 

 

 

标签:already,imported,pytest,Module,PytestAssertRewriteWarning,cannot,check
From: https://www.cnblogs.com/phoenixy/p/16854401.html

相关文章