pytest与烧瓶找不到模块

时间:2019-08-01 18:22:20

标签: python flask pytest

我正在按照本教程https://flask.palletsprojects.com/en/1.1.x/#user-s-guide学习烧瓶,但是,当我尝试运行pytest时,出现此错误:

(FlaskVenv) MacBook-Pro-de-Hugo:FlaskProject hugovillalobos$ pytest
ImportError while loading conftest '/Users/hugovillalobos/Documents/Code/FlaskProject/tests/conftest.py'.
tests/conftest.py:4: in <module>
    from Flaskr import create_app
E   ModuleNotFoundError: No module named 'Flaskr'

这是引发错误(conftest.py)的模块:

import os
import tempfile
import pytest
from Flaskr import create_app
from Flaskr.db import get_db, init_db

with open(os.path.join(os.path.dirname(__file__), 'data.sql'), 'rb') as f:
    _data_sql = f.read().decode('utf8')

@pytest.fixture
def app():
    db_fd, db_path = tempfile.mkstemp()

    app = create_app({
        'TESTING': True,
        'DATABASE': db_path,
    })

    with app.app_context():
        init_db()
        get_db().executescript(_data_sql)

    yield app

    os.close(db_fd)
    os.unlink(db_path)

@pytest.fixture
def client(app):
    return app.test_client()

@pytest.fixture
def runner(app):
    return app.test_cli_runner()

这是本教程中显示的该模块的代码(唯一的区别是我的模块为大写):

enter image description here

虽然我的文件位置可能有问题,但是我正确映射了教程项目的布局:

enter image description here

我不知道自己在想什么。

1 个答案:

答案 0 :(得分:2)

您可能需要将pytest作为python中的模块运行(将当前目录添加到sys.path中)。我记得有类似的情况,这为我解决了这个问题:

python -m pytest -vv

来源:https://docs.pytest.org/en/latest/usage.html#calling-pytest-through-python-m-pytest

您可以从命令行通过Python解释器调用测试:

python -m pytest [...] 几乎等同于直接调用命令行脚本pytest [...],除了通过python调用还会将当前目录添加到sys.path。