From 37e7e4a3810813ae36c416279ffba1c8922f78bc Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Wed, 27 Sep 2023 10:18:40 +0200 Subject: [PATCH] Add isort to tox --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index c189b905331..4d68c5069ee 100644 --- a/tox.ini +++ b/tox.ini @@ -66,9 +66,11 @@ commands = [testenv:linters] deps = {[testenv:black]deps} + {[testenv:isort]deps} flake8 commands = black -v --check {toxinidir}/plugins {toxinidir}/tests + isort --check-only --diff {toxinidir}/plugins {toxinidir}/tests flake8 {posargs} {toxinidir}/plugins {toxinidir}/tests [flake8]