Metadata-Version: 2.4
Name: flaky-tm
Version: 0.0.3
Summary: Recorder/Replayer for flaky tests
Author-email: HarryCreak <harry@creak.org>
License: MIT
Project-URL: Homepage, https://github.com/HarryBuzzard/flakyTM
Project-URL: Issues, https://github.com/HarryBuzzard/flakyTM/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: vcrpy
Requires-Dist: httpx
Requires-Dist: urllib3
Requires-Dist: pyyaml
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-vcr; extra == "dev"
Requires-Dist: httpx; extra == "dev"
Requires-Dist: urllib3; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"

Recorder/Replayer for flaky tests in python

## Running the tests

1. Install dependencies (e.g. `pip install requests vcrpy pytest`).
2. From the project root run `pytest -v`. A small ``tests/conftest.py`` file
   ensures modules are importable and the ``recorder`` decorator will write a
   cassette into ``recordings/`` when a decorated function runs.

