conftest.py 293 B

12345678910111213141516
  1. import pytest
  2. from app import app as quart_app
  3. @pytest.fixture
  4. def app():
  5. """提供 Quart 测试 app 实例。"""
  6. quart_app.config["TESTING"] = True
  7. return quart_app
  8. @pytest.fixture
  9. def client(app):
  10. """提供 Quart 异步测试客户端。"""
  11. return app.test_client()