From c5577bf30eb8abe096ac8ef376a4d45464199298 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 31 Aug 2025 12:20:27 -0500 Subject: [PATCH] test: remove black from tox, dependencies seems like overkill? --- pyproject.toml | 2 +- tox.ini | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f7a4e53..0443bcd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,7 +41,7 @@ dependencies = [ [project.optional-dependencies] db = ["SQLAlchemy", "alembic", "alembic-postgresql-enum", "passlib"] docs = ["Sphinx", "sphinxcontrib-programoutput", "enum-tools[sphinx]", "furo"] -tests = ["black", "pylint", "pytest", "pytest-cov", "tox"] +tests = ["pylint", "pytest", "pytest-cov", "tox"] [project.scripts] diff --git a/tox.ini b/tox.ini index bb3058b..f0f9be6 100644 --- a/tox.ini +++ b/tox.ini @@ -10,12 +10,6 @@ commands = pytest {posargs} [testenv:nox] extras = tests -[testenv:black] -basepython = python3.11 -extras = tests -deps = -commands = black --check . - [testenv:pylint] basepython = python3.11 extras = db,tests