__init__.py 1.2 KB

12345678910111213141516171819202122232425262728
  1. # testing/fixtures/__init__.py
  2. # Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
  3. # <see AUTHORS file>
  4. #
  5. # This module is part of SQLAlchemy and is released under
  6. # the MIT License: https://www.opensource.org/licenses/mit-license.php
  7. # mypy: ignore-errors
  8. from .base import FutureEngineMixin as FutureEngineMixin
  9. from .base import TestBase as TestBase
  10. from .mypy import MypyTest as MypyTest
  11. from .orm import after_test as after_test
  12. from .orm import close_all_sessions as close_all_sessions
  13. from .orm import DeclarativeMappedTest as DeclarativeMappedTest
  14. from .orm import fixture_session as fixture_session
  15. from .orm import MappedTest as MappedTest
  16. from .orm import ORMTest as ORMTest
  17. from .orm import RemoveORMEventsGlobally as RemoveORMEventsGlobally
  18. from .orm import (
  19. stop_test_class_inside_fixtures as stop_test_class_inside_fixtures,
  20. )
  21. from .sql import CacheKeyFixture as CacheKeyFixture
  22. from .sql import (
  23. ComputedReflectionFixtureTest as ComputedReflectionFixtureTest,
  24. )
  25. from .sql import insertmanyvalues_fixture as insertmanyvalues_fixture
  26. from .sql import NoCache as NoCache
  27. from .sql import RemovesEvents as RemovesEvents
  28. from .sql import TablesTest as TablesTest