diff --git a/requirements.txt b/requirements.txt index 197f8a3..e372991 100644 --- a/requirements.txt +++ b/requirements.txt @@ -13,14 +13,18 @@ httpcore==1.0.5 httptools==0.6.1 httpx==0.27.0 idna==3.7 +iniconfig==2.0.0 Jinja2==3.1.4 markdown-it-py==3.0.0 MarkupSafe==2.1.5 mdurl==0.1.2 notion-client==2.2.1 +packaging==24.1 +pluggy==1.5.0 pydantic==2.8.2 pydantic_core==2.20.1 Pygments==2.18.0 +pytest==8.3.2 python-dotenv==1.0.1 python-multipart==0.0.9 PyYAML==6.0.1 diff --git a/ruff.toml b/ruff.toml index 087e02c..73a8bf1 100644 --- a/ruff.toml +++ b/ruff.toml @@ -5,3 +5,6 @@ line-length = 144 select = ["ALL"] fixable = ["UP034", "I001"] ignore = ["T201", "D", "ANN101"] + +[lint.extend-per-file-ignores] +"test*.py" = ["S101"]