From 1d0eafe27dd820f67b54f9e3811a8ab25f4a8dc1 Mon Sep 17 00:00:00 2001 From: Hassen Taidirt Date: Thu, 23 Jan 2025 10:31:06 +0400 Subject: [PATCH] fix: Add missing pytest package for testing When starting the project, running `make test` will fail because the pytest package is missing. To add this package into the project, we run `uv add --dev pytest` which will add the package within the dev dependencies of **pyproject.toml**, and updates the **uv.lock** accordingly. --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c6b6ca9..6a0d0d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,10 @@ dependencies = [ "tavily-python>=0.4.0", ] +[dependency-groups] +dev = [ + "pytest>=8.3.4", +] [project.optional-dependencies] dev = ["mypy>=1.11.1", "ruff>=0.6.1"]