From 772d13db5b8a11c3652022244d17c8710b10be8b Mon Sep 17 00:00:00 2001 From: Tianyu Liu Date: Thu, 15 Aug 2024 14:13:57 +0200 Subject: [PATCH] Update requirements.txt with pytest, update ruff.toml --- requirements.txt | 4 ++++ ruff.toml | 3 +++ 2 files changed, 7 insertions(+) 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"]