我有一个文件dir/subdir/module.py
使用相对导入,因此
python3 dir/subdir/module.py
失败
ModuleNotFoundError: No module named '__main__.test_forward'; '__main__' is not a package
但是
python3 -m dir.subdir.module
运行。
毫不奇怪,
python3 -m pytest dir/subdir/module.py
pytest dir/subdir/module.py
也失败。我可以从pytest中运行该模块的测试(无需更改)吗?
当然,我看过How to test single file under pytest和https://docs.pytest.org/en/latest/usage.html#cmdline,但找不到答案。
这是一个最小的复制示例:
文件proj/main.py
:
def func():
return 1
文件proj/tests.py
:
from .main import func
def test_func():
assert func() == 1
if __name__ == "__main__":
test_func()
请注意,根据PEP 420,我在__init__.py
中省略了proj
。
(venv) romanov@k9-09:~/temp$ python3 -m proj.tests
(venv) romanov@k9-09:~/temp$
运行并通过测试(如果我将test_func
更改为失败,则会得到预期的结果)。
(venv) romanov@k9-09:~/temp$ python3 proj/tests.py
Traceback (most recent call last):
File "proj/tests.py", line 1, in <module>
from .main import func
SystemError: Parent module '' not loaded, cannot perform relative import
使用pytest:
(venv) romanov@k9-09:~/temp$ pytest proj/tests.py
============================================================================================ test session starts =============================================================================================
platform linux -- Python 3.5.2, pytest-4.3.1, py-1.8.0, pluggy-0.9.0
hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('/home/romanov/temp/.hypothesis/examples')
rootdir: /home/romanov/temp, inifile:
plugins: hypothesis-4.0.1
collected 0 items / 1 errors
=================================================================================================== ERRORS ===================================================================================================
_______________________________________________________________________________________ ERROR collecting proj/tests.py _______________________________________________________________________________________
proj/tests.py:1: in <module>
from .main import func
E SystemError: Parent module '' not loaded, cannot perform relative import
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
========================================================================================== 1 error in 0.09 seconds ===========================================================================================
不幸的是,这不能完全 重现该问题; ivan_pozdeev的答案中建议的pytest --pyargs proj.tests
表示ERROR: file or package not found: proj.tests (missing __init__.py?)
,并添加空的proj/__init__.py
使其运行。
答案 0 :(得分:2)
根据Usage and Invocations — pytest documentation:
从包运行测试
pytest --pyargs pkg.testing
这将导入
pkg.testing
并使用其文件系统位置查找 并从中运行测试。
In [9]: !ls -R t
t:
__init__.py main.py tests.py
In [10]: pwd
Out[10]: u'c:\\Users\\Sasha\\Desktop'
In [7]: os.environ['PYTHONPATH']=r'c:\Users\Sasha\Desktop'
In [8]: !pytest --pyargs t.tests
============================= test session starts =============================
platform win32 -- Python 2.7.15+, pytest-3.0.3, py-1.5.4, pluggy-0.4.0
rootdir: c:\Users\Sasha\Desktop, inifile:
plugins: xdist-1.15.0, mock-1.5.0, instafail-0.3.0
collected 1 items
t\tests.py .
========================== 1 passed in 0.02 seconds ===========================
如果按照PEP 420省略__init__.py
,pytest
会感到困惑,因为其逻辑的核心前提是在子树中搜索测试文件并导入它们。没有__init__.py
,就无法确定是否应将文件作为子包或独立模块导入。
答案 1 :(得分:0)
答案在https://docs.pytest.org/en/latest/goodpractices.html#tests-as-part-of-application-code中:
您可以为应用程序使用Python3名称空间软件包(PEP420),但是pytest仍会根据
__init__.py
文件的存在来执行测试软件包名称的发现。如果您使用上面推荐的两个文件系统布局之一,但是从目录中删除了__init__.py
文件,那么它应该只在Python3.3及更高版本上运行。 但是,从“内联测试”中,您将需要使用绝对导入来获取应用程序代码。
因此,如果不添加__init__.py
个文件,我无法实现所需的组合。