今天在其他的电脑上使用pytest时,报:“pytest pluggy.manager.PluginValidationError: unknown hook ‘pytest_namespace’”这个错,通过百度知道,这个可能是pytest的版本太高了,步骤如下:
pip uninstall pytest先卸载当前版本的pytest
然后:
pip install pytest == 4.0.2安装这个版本,比较稳定
再次执行,又发现新的错误:“typeError: attrib() got an unexpected keyword argument ‘convert’”,这个错误花了好长时间不知道怎么回事,期间也各种百度,找不到正确答案,后来一哥们跟我说他解决了,原来是attrs这个插件的版本太高了。先卸载:
pip uninstall attrs
然后:
pip install attrs==19.0.1
再次执行,ok了