ฉันกำลังทำงานกับแพ็คเกจใน Python ฉันใช้ Virtualenv ฉันตั้งค่าพา ธ ไปยังรูทของโมดูลในพา ธ . pth ใน Virtualenv ของฉันเพื่อที่ฉันจะสามารถอิมพอร์ตโมดูลของแพ็กเกจในขณะที่พัฒนาโค้ดและทำการทดสอบ (คำถามที่ 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) หรือไม่? ฉัน googled และซ้อนทับข้อผิดพลาด 'ImportError: ไม่สามารถนำเข้า' สำหรับ PyTest แต่ Hit ที่ฉันได้รับนั้นเกี่ยวข้องกับเส้นทาง python ที่หายไปและวิธีแก้ไขซึ่งดูเหมือนจะไม่ใช่ปัญหาที่นี่ ข้อเสนอแนะใด ๆ ?