我有一个the pytest good integration practices guide推荐的目录结构,如下所示:
.
src/
mypkg/
__init__.py
mypkg.py
tests/
__init__.py
test_mypkg.py
__init__.py
文件都为空,其他文件如下:mypkg.py
def foo(x):
"""
Show x.
>>> foo(5)
x is 5
>>> foo("hello")
x is hello
"""
return "x is {0}".format(x)
test.py
from mypkg import *
def test_foo():
assert foo(5) == "x is 5"
当我从根目录运行
pytest
时,我得到:tests\test_foo.py:1: in <module>
from mypkg import *
E ModuleNotFoundError: No module named 'mypkg'
推荐的设置方式是什么?
最佳答案
我不是pytest专家,但这看起来像conftest.py的任务,conftest允许您从模块/软件包/共享夹具中加载测试,等等。
有关更多信息,请参见this page。
关于python - 使用单独的测试文件运行pytest,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46771568/