我正在用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路径和补救措施有关,这似乎不是这里的问题。有什么建议吗?


当前回答

我不能说我理解为什么这样工作,但我有同样的问题,如果我运行python -m pytest,测试工作正常。

我在一个virtualenv中,pytest也在全局范围内可用:

(proj)tom@neon ~/dev/proj$ type -a python
python is /home/tom/.virtualenvs/proj/bin/python
python is /usr/bin/python

(proj)tom@neon ~/dev/proj$ python -V
Python 3.5.2

(proj)tom@neon ~/dev/proj$ type -a pytest
pytest is /home/tom/.virtualenvs/proj/bin/pytest
pytest is /usr/bin/pytest

(proj)tom@neon ~/dev/proj$ pytest --version
This is pytest version 3.5.0, imported from /home/tom/.virtualenvs/proj/lib/python3.5/site-packages/pytest.py

其他回答

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

如果你有一个tests.py文件和一个tests/__init__.py文件夹,这个问题就会发生。

在收集过程中,pytest会找到该文件夹,但当它试图从该文件夹导入测试文件时,tests.py文件将导致导入问题。

要修复,只需删除tests.py文件并将所有测试放在tests/文件夹中。

针对您的特定情况,修复将精确地:

删除/home/zz/Desktop/GitFolders/rc/tests.py文件 确保存在/home/zz/Desktop/GitFolders/rc/tests/__init__.py

从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

我不能说我理解为什么这样工作,但我有同样的问题,如果我运行python -m pytest,测试工作正常。

我在一个virtualenv中,pytest也在全局范围内可用:

(proj)tom@neon ~/dev/proj$ type -a python
python is /home/tom/.virtualenvs/proj/bin/python
python is /usr/bin/python

(proj)tom@neon ~/dev/proj$ python -V
Python 3.5.2

(proj)tom@neon ~/dev/proj$ type -a pytest
pytest is /home/tom/.virtualenvs/proj/bin/pytest
pytest is /usr/bin/pytest

(proj)tom@neon ~/dev/proj$ pytest --version
This is pytest version 3.5.0, imported from /home/tom/.virtualenvs/proj/lib/python3.5/site-packages/pytest.py

我不同意那些说你必须删除任何__init__.py文件的帖子。相反,您必须更改sys.path。

做个实验,打印sys。路径时正常运行的代码。 然后输出sys。路径,同时通过pytest运行代码。我想你会发现这两条路径之间有区别,这就是为什么pytest会中断。

为了解决这个问题,在第二个实验的第0个索引处插入第一个实验的路径。

让'/usr/exampleUser/Documents/foo'作为实验1的print(sys.path)的第一个元素。

下面是代码,应该解决你的问题:

导入系统 sys。path[0] = '/usr/exampleUser/Documents/foo'

把它放在文件的顶部,在实际的import语句之前。

来源:我自己也在处理这个问题,上面的过程解决了这个问题。