zoukankan      html  css  js  c++  java
  • module 'pytest' has no attribute 'allure'问题解决

    安装allure后执行命令后报错module 'pytest' has no attribute 'allure'

    C:UsersDesktopxin>pytest -s -q --alluredir report
    INTERNALERROR> Traceback (most recent call last):
    INTERNALERROR> File "c:python34libsite-packages\_pytestmain.py", line 199, in wrap_session
    INTERNALERROR> config._do_configure()
    INTERNALERROR> File "c:python34libsite-packages\_pytestconfig\__init__.py", line 636, in _do_configure
    INTERNALERROR> self.hook.pytest_configure.call_historic(kwargs=dict(config=self))
    INTERNALERROR> File "c:python34libsite-packagespluggyhooks.py", line 306, in call_historic
    INTERNALERROR> res = self._hookexec(self, self.get_hookimpls(), kwargs)
    INTERNALERROR> File "c:python34libsite-packagespluggymanager.py", line 68, in _hookexec
    INTERNALERROR> return self._inner_hookexec(hook, methods, kwargs)
    INTERNALERROR> File "c:python34libsite-packagespluggymanager.py", line 62, in <lambda>
    INTERNALERROR> firstresult=hook.spec.opts.get("firstresult") if hook.spec else False,
    INTERNALERROR> File "c:python34libsite-packagespluggycallers.py", line 208, in _multicall
    INTERNALERROR> return outcome.get_result()
    INTERNALERROR> File "c:python34libsite-packagespluggycallers.py", line 80, in get_result
    INTERNALERROR> raise ex[1].with_traceback(ex[2])
    INTERNALERROR> File "c:python34libsite-packagespluggycallers.py", line 187, in _multicall
    INTERNALERROR> res = hook_impl.function(*args)
    INTERNALERROR> File "c:python34libsite-packagesallurepytest_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

     另推荐很好的视频学习网站:http://www.51zxw.net/study.asp?vip=19591611

  • 相关阅读:
    Codeforces Round 718C Sasha and Array (矩阵线段树)
    Ural Timus 1009 K-based Numbers (dp+矩阵快速幂+快速乘)
    CPE常用指令
    Error opening terminal:xterm解决方法
    编译MT7620n NFS文件系统
    ubuntu中把dash链接变成bash
    USB相关
    HI3515海思开发板移植3G模块笔记
    openwrt的一些琐事
    snprintf拷贝字符串
  • 原文地址:https://www.cnblogs.com/lansan0701/p/10345142.html
Copyright © 2011-2022 走看看