├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .python-version ├── .readthedocs.yaml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE ├── README.rst ├── docs ├── Makefile ├── conf.py └── index.rst ├── pyproject.toml ├── src └── pytest_sqlalchemy │ ├── __init__.py │ └── py.typed └── tests ├── conftest.py ├── examples ├── test_connect_uri.py ├── test_db_schema.py ├── test_dbsession.py ├── test_minimal.py ├── test_transaction.py └── test_xdist.py ├── py.typed └── test_plugin.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pytest_sqlalchemy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/src/pytest_sqlalchemy/__init__.py -------------------------------------------------------------------------------- /src/pytest_sqlalchemy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/examples/test_connect_uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/examples/test_connect_uri.py -------------------------------------------------------------------------------- /tests/examples/test_db_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/examples/test_db_schema.py -------------------------------------------------------------------------------- /tests/examples/test_dbsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/examples/test_dbsession.py -------------------------------------------------------------------------------- /tests/examples/test_minimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/examples/test_minimal.py -------------------------------------------------------------------------------- /tests/examples/test_transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/examples/test_transaction.py -------------------------------------------------------------------------------- /tests/examples/test_xdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/examples/test_xdist.py -------------------------------------------------------------------------------- /tests/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytest-dev/pytest-sqlalchemy/HEAD/tests/test_plugin.py --------------------------------------------------------------------------------