From fda49d091c7aa84ca66967bf7badc461e0fd5914 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Tue, 9 Dec 2025 09:16:44 +0100 Subject: [PATCH] chore: add pytest config, deps --- pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 30fc028..9ea1281 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,4 +58,16 @@ dev = [ "mypy>=1.18.2", "pytest>=8.4.2", "pytest-cov>=7.0.0", + "ratelimit>=2.2.0", + "beautifulsoup4>=4.12.0", ] + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = ["test_*.py"] +python_classes = ["Test*"] +python_functions = ["test_*"] +markers = [ + "integration: marks tests as integration tests (deselect with '-m \"not integration\"')", +] +