Skip to content

Commit

Permalink
[Update] pyproject.toml include pylint and pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
neemiasbsilva committed Dec 30, 2024
1 parent 7f1035f commit 4dd448e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies = [

[project.scripts]
"toxic-comment-classification-kedro" = "toxic_comment_classification_kedro.__main__:main"
lint = "pylint src --rcfile=.pylintrc --fail-under=10"

[project.entry-points."kedro.hooks"]

Expand All @@ -45,7 +46,8 @@ dev = [
"pytest-cov~=3.0",
"pytest-mock>=1.7.1, <2.0",
"pytest~=7.2",
"ruff~=0.1.8"
"ruff~=0.1.8",
"pylint~=2.16.0"
]


Expand Down Expand Up @@ -87,7 +89,8 @@ select = [
"PL", # Pylint
"T201", # Print Statement
]
ignore = ["E501"] # Ruff format takes care of line-too-long
ignore = ["E501", "PLR0913", "UP008"] # Ruff format takes care of line-too-long

[tool.kedro_telemetry]
project_id = "bc67fc87dc99439a91bb6bed5fa02e96"

0 comments on commit 4dd448e

Please sign in to comment.