From e21a8530f3d293b02fb1ae3ec94318e93ca19078 Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Wed, 14 Feb 2024 15:57:32 +0530 Subject: [PATCH] Move used python packages for test into dev dependency group The test dependency group was being used independently --- pyproject.toml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index aa52e06c..d5ddbd21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -94,22 +94,18 @@ prod = [ "stripe == 7.3.0", "twilio == 8.11", ] -test = [ +dev = [ + "khoj-assistant[prod]", "pytest >= 7.1.2", + "pytest-xdist[psutil]", + "pytest-django == 4.5.2", + "pytest-asyncio == 0.21.1", "freezegun >= 1.2.0", "factory-boy >= 3.2.1", - "trio >= 0.22.0", - "pytest-xdist", "psutil >= 5.8.0", -] -dev = [ - "khoj-assistant[test]", - "khoj-assistant[prod]", "mypy >= 1.0.1", "black >= 23.1.0", "pre-commit >= 3.0.4", - "pytest-django == 4.5.2", - "pytest-asyncio == 0.21.1", ] [tool.hatch.version]