python报错ModuleNotFoundError: No module named ‘configs‘

问题:项目根目录执行pytest命令报错,找不到该模块

E:\桌面\code\combat>pytest -s
Test session starts (platform: win32, Python 3.8.4, pytest 6.2.5, pytest-sugar 0.9.4)
rootdir: E:\桌面\code\combat
plugins: allure-pytest-2.9.45, html-3.1.1, metadata-1.11.0, sugar-0.9.4
collecting ... 
―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― ERROR collecting test session
――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
d:\py3.8\lib\importlib\__init__.py:127: in import_module
    return _bootstrap._gcd_import(name[level:], package, level)
<frozen importlib._bootstrap>:1014: in _gcd_import
    ???
<frozen importlib._bootstrap>:991: in _find_and_load
    ???
<frozen importlib._bootstrap>:975: in _find_and_load_unlocked
    ???
<frozen importlib._bootstrap>:671: in _load_unlocked
    ???
d:\py3.8\lib\site-packages\_pytest\assertion\rewrite.py:170: in exec_module
    exec(co, module.__dict__)
testCase\apiCase\business\conftest.py:5: in <module>
    from configs.env import NAME_PSW
E   ModuleNotFoundError: No module named 'configs'

=============================================================================== short test summary info ===============================================================================
FAILED  - ModuleNotFoundError: No module named 'configs'
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 error during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Results (0.62s):

#报错信息
E   ModuleNotFoundError: No module named 'configs'

问题原因:

  • python寻找包和模块首先根据文件自身为起点指定相对路径,其次根据设定的pythonpath为起点指定相对路径。
  • 而现在的项目由于层级结构复杂,并不统一,因此根据文件自身为起点指定的相对路径不可用

解决办法

设定pythonpath,统一相对路径起点

1.通过python -m pytest -s 运行测试用例,python会把当前目录添加到pythonpath

E:\桌面\code\combat>python -m pytest -s
Test session starts (platform: win32, Python 3.8.4, pytest 6.2.5, pytest-sugar 0.9.4)
rootdir: E:\桌面\code\combat
plugins: allure-pytest-2.9.45, html-3.1.1, metadata-1.11.0, sugar-0.9.4
collecting ... --登录操作初始化--
--开始清楚部门数据--
tc000001部门初始化

tc000001
 testCase/apiCase/business/test_organiz.py ✓                                                                                                                              25% ██▌
--tc000091部门初始化--
--tc000091进行清楚操作--
 testCase/apiCase/business/test_organiz.py ✓✓                                                                                                                             50% █████
--新增部门的初始化--
--tc000002进行部门初始化操作--

--tc000002进行部门清除操作--
 testCase/apiCase/business/D-研发部/test_exist_organiz.py ✓                                                                                                                  75% ███████
▌  --tc000051进行部门初始化操作--
--tc000051进行部门清除操作--
--新增部门的清除--
-清楚部门数据完成--
--登录初始化完成--
 testCase/apiCase/business/D-研发部/test_exist_organiz.py ✓✓                                                                                                                100% ███████
███

Results (3.15s):
       4 passed

2.通过项目跟目录创建一个空的conftest.py文件,用pytest可以直接指定当前根目录到pythonpath
python报错ModuleNotFoundError: No module named ‘configs‘_第1张图片

E:\桌面\code\combat>pytest
Test session starts (platform: win32, Python 3.8.4, pytest 6.2.5, pytest-sugar 0.9.4)
rootdir: E:\桌面\code\combat
plugins: allure-pytest-2.9.45, html-3.1.1, metadata-1.11.0, sugar-0.9.4
collecting ... 
 testCase/apiCase/business/test_organiz.py ✓                                                                                                                              25% ██▌
 testCase/apiCase/business/test_organiz.py ✓✓                                                                                                                             50% █████

 testCase/apiCase/business/D-研发部/test_exist_organiz.py ✓                                                                                                                  75% ███████
 testCase/apiCase/business/D-研发部/test_exist_organiz.py ✓✓                                                                                                                100% ███████
███

Results (2.37s):
       4 passed


你可能感兴趣的:(问题解决,python,开发语言)