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パスとこれに対する解決策に関連していましたが、ここでは問題のようではありません。助言がありますか?