我正在用Python编写一个包。我使用virtualenv。我在virtualenv的.pth路径中设置了模块的根路径,这样我就可以在开发代码和测试时导入包的模块(问题1:这是一种好方法吗?)这很好(这是一个例子,这是我想要的行为):

(VEnvTestRc) zz@zz:~/Desktop/GitFolders/rc$ python
Python 2.7.12 (default, Jul  1 2016, 15:12:24) 
[GCC 5.4.0 20160609] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from rc import ns
>>> exit()
(VEnvTestRc) zz@zz:~/Desktop/GitFolders/rc$ python tests/test_ns.py 
issued command: echo hello
command output: hello

但是,如果我尝试使用PyTest,我会得到一些导入错误消息:

(VEnvTestRc) zz@zz:~/Desktop/GitFolders/rc$ pytest
=========================================== test session starts ============================================
platform linux2 -- Python 2.7.12, pytest-3.0.5, py-1.4.31, pluggy-0.4.0
rootdir: /home/zz/Desktop/GitFolders/rc, inifile: 
collected 0 items / 1 errors 

================================================== ERRORS ==================================================
________________________________ ERROR collecting tests/test_ns.py ________________________________
ImportError while importing test module '/home/zz/Desktop/GitFolders/rc/tests/test_ns.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
tests/test_ns.py:2: in <module>
    from rc import ns
E   ImportError: cannot import name ns
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 1 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
========================================= 1 error in 0.09 seconds ==========================================
(VEnvTestRc) zz@zz:~/Desktop/GitFolders/rc$ which pytest
/home/zz/Desktop/VirtualEnvs/VEnvTestRc/bin/pytest

我有点困惑,这似乎表明一个导入错误,但Python做得很好,为什么有一个问题,特别是与PyTest?对原因/补救(问题2)有什么建议吗?我在谷歌上搜索了PyTest的“ImportError: cannot import”错误,但我得到的点击率与丢失的python路径和补救措施有关,这似乎不是这里的问题。有什么建议吗?


当前回答

请查看这里:https://docs.pytest.org/en/documentation-restructure/background/pythonpath.html

我有一个问题与pytest(已解决使用python -m pytest);错误在于

FileNotFoundError: [Errno 2] No such file or directory: '/usr/local/lib/python3.9/site-packages/...

我发现问题是在tests/和tests/子文件夹中缺少__init__.py。

其他回答

有一个类似的问题,当我在测试目录下添加__init__.py文件时,它工作了。

我的观点是:如果不使用虚拟环境,pytest可能会失败。有时它会起作用,有时则不会。

因此,解决方案是:

使用PIP卸载删除pytest 创建你的venv 激活你的venv PIP在可编辑模式下安装项目路径,因此pytest将它视为一个模块(否则,pytest不会找到您的内部导入)。为此,您需要一个setup.py文件 安装包,包括pytest 最后,运行测试

代码,使用windows PowerShell:

pip uninstall pytest
python.exe -m venv my_env
.\my_env\Scripts\activate
(my_env) pip install -e .
(my_env) pip install pytest pytest-html pandas numpy

最后

(my_env) pytest --html="my_testing_report.html"

一个setup.py的例子,用于pip install -e:

import setuptools

setuptools.setup(
    name='my_package',
    version='devel',
    author='erickfis',
    author_email='erickfis@gmail.com',
    description='My package',
    long_description='My gooood package',
    packages=setuptools.find_packages(),
    classifiers=[
        'Programming Language :: Python :: 3',
        'Operating System :: OS Independent',
    ],
    include_package_data=True
)

我通过在环境变量中为我正在运行测试的特定配置设置PYTHONPATH来解决我的问题。

当你在PyCharm上查看测试文件时:

Ctrl + Shift + A 编辑配置 在Environment >环境变量下设置PYTHONPATH。

更新

移动到项目的根目录 创建虚拟环境 激活新创建的虚拟环境 将变量$PYTHONPATH设置为项目的根目录并导出它:

export PYTHONPATH=$(pwd)

不要从tests/目录或src/目录中删除__init__.py。

还要注意:

你的目录的根目录不是python模块,所以不要添加__init__.py py在项目的根目录中是不必要的。

$PYTHONPATH变量只在当前终端/控制台会话期间可用;所以你每次都需要设置这个。 (如果您正在使用pycharm,可以按照此更新之前的步骤操作)。

[解析] 在直接进入删除/添加__init__.py的解决方案之前,我们可能还想看看在你的类中是如何导入的。实际上,我花了一天的时间在__init__.py上,认为这可能是问题所在:)然而,这是相当有意义的。

在我的例子中,从一个python类调用类到另一个python类的方式是错误的,这抛出了ImportError。修正了类/模块被调用的方式,它像魅力一样工作。希望,这也能帮助其他人。

是的,对于类似的错误,我们可能有不同的解决方案,这取决于代码的编写方式。最好在自我调试上花更多的时间。经验教训:)快乐的编码!!

从pytest 7.0开始,你现在可以在pytest.ini中添加pythonpath。不需要在根目录中添加__init__.py或conftest.py。

[pytest]
minversion = 7.0
addopts = --cov=src
pythonpath = src
testpaths =
    tests

可以不带任何参数运行pytest。

https://docs.pytest.org/en/7.0.x/reference/reference.html#confval-pythonpath