mirror of
https://github.com/kirill-markin/repo-to-text.git
synced 2025-12-06 03:22:23 -08:00
Fix CI: Enable dev dependencies for pylint
- Uncomment [project.optional-dependencies] dev section - Remove duplicate Poetry dev dependencies - Fix pylint command not found error in GitHub Actions - Resolves CI failure in PR #28
This commit is contained in:
parent
d7badce9ae
commit
241ce0ef70
1 changed files with 11 additions and 18 deletions
|
|
@ -33,16 +33,16 @@ Repository = "https://github.com/kirill-markin/repo-to-text"
|
||||||
repo-to-text = "repo_to_text.main:main"
|
repo-to-text = "repo_to_text.main:main"
|
||||||
flatten = "repo_to_text.main:main"
|
flatten = "repo_to_text.main:main"
|
||||||
|
|
||||||
#[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
#dev = [
|
dev = [
|
||||||
# "pytest>=8.2.2",
|
"pytest>=8.2.2",
|
||||||
# "black",
|
"black",
|
||||||
# "mypy",
|
"mypy",
|
||||||
# "isort",
|
"isort",
|
||||||
# "build",
|
"build",
|
||||||
# "twine",
|
"twine",
|
||||||
# "pylint",
|
"pylint",
|
||||||
#]
|
]
|
||||||
|
|
||||||
[tool.pylint]
|
[tool.pylint]
|
||||||
disable = [
|
disable = [
|
||||||
|
|
@ -50,12 +50,5 @@ disable = [
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
[tool.poetry.group.dev.dependencies]
|
|
||||||
pytest = "^8.3.5"
|
|
||||||
black = "^25.1.0"
|
|
||||||
mypy = "^1.15.0"
|
|
||||||
isort = "^6.0.1"
|
|
||||||
build = "^1.2.2.post1"
|
|
||||||
twine = "^6.1.0"
|
|
||||||
pylint = "^3.3.7"
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue