Metadata-Version: 2.4
Name: pytest-strawberry
Version: 0.1.0
Summary: Pytest plugin for Strawberry GraphQL
Keywords: graphql,pytest,strawberry-graphql,testing
Author: Patrick Arminio
Author-email: Patrick Arminio <patrick.arminio@gmail.com>
License-Expression: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Testing
Requires-Dist: pytest>=8.0,<10.0
Requires-Python: >=3.10, <4.0
Project-URL: repository, https://github.com/strawberry-graphql/pytest-strawberry
Project-URL: issues, https://github.com/strawberry-graphql/pytest-strawberry/issues
Description-Content-Type: text/markdown

<img src="https://github.com/strawberry-graphql/strawberry/raw/main/.github/logo.png" width="124" height="150" alt="Strawberry GraphQL logo">

# pytest-strawberry

> Pytest plugin for Strawberry GraphQL

This repository currently provides the package and release infrastructure for
`pytest-strawberry`. The installed package is discovered automatically by
pytest, but it does not expose fixtures, hooks, or command-line options yet.

## Installation

```shell
pip install pytest-strawberry
```

Pytest loads the plugin automatically through its `pytest11` entry point.

## Development

Install the project and its development dependencies with
[uv](https://docs.astral.sh/uv/):

```shell
uv sync
```

Run the checks with:

```shell
uv run pytest
uv run ruff check .
uv run ruff format --check .
uv run mypy
uv build
```

## Releases

Release changes are proposed through pull requests containing a `RELEASE.md`.
After the pull request is merged into `main`, AutoPub prepares and publishes the
release.

## Licensing

The code in this project is licensed under the MIT license. See
[LICENSE](./LICENSE) for more information.
