1
我有具有以下目錄結構的項目:配置pytest rootdir?
.
..
core/start.py
tests/test_curve.py
pytest.ini
pytest.ini的內容是:
[pytest]
testpaths = tests
的test_curve.py
內容是:
import core.start
def test_curve():
assert some_valid_stuff
當我跑項目的根文件夾pytest,我得到:
import core.start
ImportError: No module named 'core'
我在做什麼錯?
這不是pytest問題,但蟒蛇進口。 'core'和'tests'不是來自同一個軟件包,所以你不能''import core.start' from'core import start' – Arount