1
我在模塊的進口問題在我的項目。我創建測試和我不能導入我的主要測試我的應用程序的一個終點,從測試文件teste_ex.py
。這是我的項目結構:Python的導入模塊錯誤
backend_api/
api/
__init__.py
main.py
testes/
__init__.py
test_ex.py
在我test_ex.py我試着以這種方式導入main
:
import api.main
from webtest import TestApp
def test_functional_concursos_api():
app = TestApp(main.app)
assert app.get('/hello').status == '200 OK'
我omly得到ImportError: No module named 'api'
- 什麼可以做進口我的主要我的測試文件?