Update requirements.txt with pytest, update ruff.toml

This commit is contained in:
2024-08-15 14:13:57 +02:00
parent e1e6e0f7d7
commit 772d13db5b
2 changed files with 7 additions and 0 deletions

View File

@@ -13,14 +13,18 @@ httpcore==1.0.5
httptools==0.6.1 httptools==0.6.1
httpx==0.27.0 httpx==0.27.0
idna==3.7 idna==3.7
iniconfig==2.0.0
Jinja2==3.1.4 Jinja2==3.1.4
markdown-it-py==3.0.0 markdown-it-py==3.0.0
MarkupSafe==2.1.5 MarkupSafe==2.1.5
mdurl==0.1.2 mdurl==0.1.2
notion-client==2.2.1 notion-client==2.2.1
packaging==24.1
pluggy==1.5.0
pydantic==2.8.2 pydantic==2.8.2
pydantic_core==2.20.1 pydantic_core==2.20.1
Pygments==2.18.0 Pygments==2.18.0
pytest==8.3.2
python-dotenv==1.0.1 python-dotenv==1.0.1
python-multipart==0.0.9 python-multipart==0.0.9
PyYAML==6.0.1 PyYAML==6.0.1

View File

@@ -5,3 +5,6 @@ line-length = 144
select = ["ALL"] select = ["ALL"]
fixable = ["UP034", "I001"] fixable = ["UP034", "I001"]
ignore = ["T201", "D", "ANN101"] ignore = ["T201", "D", "ANN101"]
[lint.extend-per-file-ignores]
"test*.py" = ["S101"]