pytest报错 E ModuleNotFoundError解决办法

pytest报错 E ModuleNotFoundError解决办法,第1张

pytest报错 E ModuleNotFoundError解决办法 Hint: make sure your test modules/packages have valid Python names. Pytest报错

_____________________________________________________________________________________ ERROR collecting test_panda_1.py ______________________________________________________________________________________
importError while importing test module 'D:pythonhomepandabus_API_test_pytestcasetest_panda_1.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
test_panda_1.py:7: in
from common.logger import log
E ModuleNotFoundError: No module named 'common'

方法 1 在要执行pytest 的根目录新建   conftest.py文件;文件内容

import os

import sys

sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), ‘..‘)))

 方法2 pyteset 在执行测试test case目录下每个目录都包含__init__.py文件;在项目的跟目录执行,也可以,亲测可以

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4699201.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-07
下一篇 2022-11-07

发表评论

登录后才能评论

评论列表(0条)

保存