3
0
Fork 0

test: make pylint a dependency for tests extra

This commit is contained in:
Lance Edgar 2025-08-30 21:03:20 -05:00
parent ffd82eb611
commit 49f9a0228b
2 changed files with 2 additions and 4 deletions

View file

@ -41,7 +41,7 @@ dependencies = [
[project.optional-dependencies]
db = ["SQLAlchemy", "alembic", "alembic-postgresql-enum", "passlib"]
docs = ["Sphinx", "sphinxcontrib-programoutput", "enum-tools[sphinx]", "furo"]
tests = ["pytest-cov", "tox"]
tests = ["pylint", "pytest-cov", "tox"]
[project.scripts]

View file

@ -12,9 +12,7 @@ extras = tests
[testenv:pylint]
basepython = python3.11
extras = db
deps = pylint
prompt_toolkit
extras = db,tests
commands = pylint wuttjamaican
[testenv:coverage]