0

在一个函数中实现了一个邀请验证系统。我想用 pytest 来模拟它。这是conftest.py

from starlette.testclient import TestClient

@pytest.fixture(scope="session")
def app_client():
    app = create_starlette_app()
    with TestClient(app) as client:
        yield app

我想修改该应用程序中的特定功能以绕过电子邮件验证。

4

0 回答 0