C:\Users\Desktop\xin>pytest -s -q --alluredir report
INTERNALERROR> Traceback (most recent call last):
INTERNALERROR> File “c:\python34\lib\site-packages_pytest\main.py”, line 199, in wrap_session
INTERNALERROR> config.do_configure()
INTERNALERROR> File "c:\python34\lib\site-packages_pytest\config_init.py", line 636, in _do_configure
INTERNALERROR> self.hook.pytest_configure.call_historic(kwargs=dict(config=self))
INTERNALERROR> File “c:\python34\lib\site-packages\pluggy\hooks.py”, line 306, in call_historic
INTERNALERROR> res = self._hookexec(self, self.get_hookimpls(), kwargs)
INTERNALERROR> File “c:\python34\lib\site-packages\pluggy\manager.py”, line 68, in _hookexec
INTERNALERROR> return self._inner_hookexec(hook, methods, kwargs)
INTERNALERROR> File “c:\python34\lib\site-packages\pluggy\manager.py”, line 62, in
INTERNALERROR> firstresult=hook.spec.opts.get(“firstresult”) if hook.spec else False,
INTERNALERROR> File “c:\python34\lib\site-packages\pluggy\callers.py”, line 208, in _multicall
INTERNALERROR> return outcome.get_result()
INTERNALERROR> File “c:\python34\lib\site-packages\pluggy\callers.py”, line 80, in get_result
INTERNALERROR> raise ex[1].with_traceback(ex[2])
INTERNALERROR> File “c:\python34\lib\site-packages\pluggy\callers.py”, line 187, in _multicall
INTERNALERROR> res = hook_impl.function(*args)
INTERNALERROR> File “c:\python34\lib\site-packages\allure\pytest_plugin.py”, line 80, in pytest_configure
INTERNALERROR> pytest.allure._allurelistener = testlistener
INTERNALERROR> AttributeError: ‘module’ object has no attribute ‘allure’
解决
cmd执行如下命令:
pip uninstall pytest-allure-adaptor
pip install allure-pytest
在执行命令'pytest-s-q--alluredirreport'时遇到了一个内部错误,导致配置失败。错误信息显示为'AttributeError: 'module' object has no attribute 'allure''。为了解决这个问题,建议先卸载pytest-allure-adaptor,然后重新安装allure-pytest。执行如下命令:pip uninstall pytest-allure-adaptor && pip install allure-pytest。
2360

被折叠的 条评论
为什么被折叠?



