From 7460e32d6c4a48d9eda10c6968e48124d24963c7 Mon Sep 17 00:00:00 2001 From: Michael Foster Date: Mon, 16 Feb 2026 15:04:05 +0000 Subject: [PATCH] Better install instructions --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1e02f27..eb36f90 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,20 @@ You can install the extension by running `pip install pytest-flakefighters` from ### With uv -If you use [uv](https://github.com/astral-sh/uv) for Python package management, you can install pytest-flakefighters with `uv pip install pytest-flakefighters`. +If you use [uv](https://github.com/astral-sh/uv) for Python package management, you can install pytest-flakefighters with `uv add pytest-flakefighters`. +This will add the plugin to your main dependencies. +``` +dependencies = [ + "pytest-flakefighters>=x.y.z", +] +``` +However, pytest is typically a [development dependency](https://docs.astral.sh/uv/concepts/projects/dependencies/#development-dependencies), and so should be added with `uv add --dev pytest-flakefighters`. +``` +[dependency-groups] +dev = [ + "pytest-flakefighters>=x.y.z", +] +``` ### From source (for development)