Skip to content

Commit

Permalink
fix exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis committed Feb 4, 2024
1 parent ba4f6ab commit e226d59
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
10 changes: 6 additions & 4 deletions libs/community/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -261,16 +261,18 @@ extended_testing = [
"rdflib",
]

[tool.ruff]
exclude = [
"tests/examples/non-utf8-encoding.py",
"tests/integration_tests/examples/non-utf8-encoding.py",
]

[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
]
exclude = [
"tests/examples/non-utf8-encoding.py",
"tests/integration_tests/examples/non-utf8-encoding.py",
]

[tool.mypy]
ignore_missing_imports = "True"
Expand Down
8 changes: 5 additions & 3 deletions libs/langchain/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -300,15 +300,17 @@ extended_testing = [
"rdflib",
]

[tool.ruff]
exclude = [
"tests/integration_tests/examples/non-utf8-encoding.py",
]

[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
]
exclude = [
"tests/integration_tests/examples/non-utf8-encoding.py",
]

[tool.mypy]
ignore_missing_imports = "True"
Expand Down

0 comments on commit e226d59

Please sign in to comment.