From: H Date: Wed, 19 Jan 2022 20:57:35 +0000 (+0000) Subject: Configure codespell in tox.ini X-Git-Tag: pool-3.1~7^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb7cefdaedc3c10fdbeb33361c665306819be339;p=thirdparty%2Fpsycopg.git Configure codespell in tox.ini --- diff --git a/tox.ini b/tox.ini index f833c85c9..58c5f7f0c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = black, flake8, mypy +envlist = black, flake8, mypy, codespell isolated_build = True [testenv] @@ -27,6 +27,11 @@ deps = ./psycopg[docs] ./psycopg_pool +[testenv:codespell] +commands = codespell -L "alot,ans,ba,fo,te" docs psycopg* tests +deps = + codespell + [flake8] max-line-length = 85 ignore = W503, E203