From e518f96e9daab4a93b16946dda987832fbbc7527 Mon Sep 17 00:00:00 2001 From: Kharec Date: Tue, 23 Dec 2025 04:46:07 +0100 Subject: [PATCH] build: add pytest as optional --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 3ab06df..325812e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,5 +6,12 @@ readme = "README.md" requires-python = ">=3.13" dependencies = ["atproto>=0.0.65", "pyyaml>=6.0"] +[project.optional-dependencies] +dev = ["pytest>=8.0"] + [project.scripts] skywipe = "skywipe.cli:main" + +[tool.pytest.ini_options] +testpaths = ["tests"] +pythonpath = ["."]