Sto lavorando a un pacchetto in Python. Uso virtualenv. Ho impostato il percorso alla radice del modulo in un percorso .pth nel mio virtualenv, in modo da poter importare i moduli del pacchetto durante lo sviluppo del codice ed eseguire i test (Domanda 1: è un buon modo per farlo?). Funziona bene (ecco un esempio, questo è il comportamento che voglio):
(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
Tuttavia, se provo a utilizzare PyTest, ricevo alcuni messaggi di errore di importazione:
(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
Sono un po 'perplesso, sembra che questo indichi un errore di importazione, ma Python va bene, quindi perché c'è un problema specifico con PyTest? Qualche suggerimento sul motivo / rimedio (Domanda 2)? Ho cercato su Google e ho superato lo stack dell'errore "ImportError: impossibile importare" per PyTest, ma i riscontri che ho ricevuto erano correlati al percorso di Python mancante e rimedio a questo, che non sembra essere il problema qui. Eventuali suggerimenti?