diff --git a/libs/chatchat-server/pyproject.toml b/libs/chatchat-server/pyproject.toml index bcaa8a9d..ed347114 100644 --- a/libs/chatchat-server/pyproject.toml +++ b/libs/chatchat-server/pyproject.toml @@ -63,14 +63,18 @@ optional = true # dependencies used for running tests (e.g., pytest, freezegun, response). # Any dependencies that do not meet that criteria will be removed. pytest = "^7.3.0" +pytest-cov = "^4.0.0" +pytest-dotenv = "^0.5.2" +duckdb-engine = "^0.9.2" +pytest-watcher = "^0.2.6" freezegun = "^1.2.2" +responses = "^0.22.0" +pytest-asyncio = "^0.23.2" +lark = "^1.1.5" pytest-mock = "^3.10.0" +pytest-socket = "^0.6.0" syrupy = "^4.0.2" -pytest-watcher = "^0.3.4" -pytest-asyncio = "^0.21.1" -grandalf = "^0.8" -pytest-profiling = "^1.7.0" -responses = "^0.25.0" +requests-mock = "^1.11.0" model-providers = { path = "../model-providers", develop = true } @@ -242,6 +246,10 @@ ignore-regex = '.*(Stati Uniti|Tense=Pres).*' # unsecure - typo but part of API, decided to not bother for now ignore-words-list = 'momento,collison,ned,foor,reworkd,parth,whats,aapply,mysogyny,unsecure,damon,crate,aadd,symbl,precesses,accademia,nin' +[tool.poetry.plugins.dotenv] +ignore = "false" +location = ".env" + # https://python-poetry.org/docs/repositories/ [[tool.poetry.source]] diff --git a/libs/model-providers/pyproject.toml b/libs/model-providers/pyproject.toml index 283801c7..053ff7ef 100644 --- a/libs/model-providers/pyproject.toml +++ b/libs/model-providers/pyproject.toml @@ -205,6 +205,9 @@ ignore-regex = '.*(Stati Uniti|Tense=Pres).*' # unsecure - typo but part of API, decided to not bother for now ignore-words-list = 'momento,collison,ned,foor,reworkd,parth,whats,aapply,mysogyny,unsecure,damon,crate,aadd,symbl,precesses,accademia,nin' +[tool.poetry.plugins.dotenv] +ignore = "false" +location = ".env" # https://python-poetry.org/docs/repositories/ [[tool.poetry.source]] diff --git a/pyproject.toml b/pyproject.toml index 91d39618..e6d3f19c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,10 @@ extend-exclude = [ "cookbook/gymnasium_agent_simulation.ipynb" = ["F821"] "docs/docs/integrations/document_loaders/tensorflow_datasets.ipynb" = ["F821"] +[tool.poetry.plugins.dotenv] +ignore = "false" +location = ".env" + # https://python-poetry.org/docs/repositories/ [[tool.poetry.source]]