Metadata-Version: 2.1
Name: plain.pytest
Version: 0.3.0
Summary: Pytest integration for Plain.
Home-page: https://plainframework.com
License: BSD-3-Clause
Author: Dave Gaeddert
Author-email: dave.gaeddert@dropseed.dev
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: click (>=8.0.0)
Requires-Dist: plain (<1.0.0)
Requires-Dist: pytest (>=7.0.0)
Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
Project-URL: Documentation, https://plainframework.com/docs/
Project-URL: Repository, https://github.com/dropseed/plain
Description-Content-Type: text/markdown

<!-- This file is compiled from plain-pytest/plain/pytest/README.md. Do not edit this file directly. -->

## Testing - pytest

Write and run tests with pytest.

Django includes its own test runner and [unittest](https://docs.python.org/3/library/unittest.html#module-unittest) classes.
But a lot of people (myself included) prefer [pytest](https://docs.pytest.org/en/latest/contents.html).

In Plain I've removed the Django test runner and a lot of the implications that come with it.
There are a few utilities that remain to make testing easier,
and `plain-test` is a wrapper around `pytest`.

