Coverage for fastapi_restly / testing / _fixtures.py: 0%
2 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-06-24 11:13 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-06-24 11:13 +0000
1"""Compatibility import path for Restly's private pytest fixture implementation."""
3from fastapi_restly._pytest_fixtures import (
4 _activate_savepoint_only_mode_sessions,
5 _run_alembic_upgrade,
6 _shared_connection,
7 restly_app,
8 restly_async_session,
9 restly_client,
10 restly_project_root,
11 restly_session,
12)
14__all__ = [
15 "restly_app",
16 "restly_async_session",
17 "restly_client",
18 "restly_project_root",
19 "restly_session",
20]