From 606ae4c5acaacf159c91493692948fb02543c4ab Mon Sep 17 00:00:00 2001 From: Remco de Boer <29308176+redeboer@users.noreply.github.com> Date: Fri, 11 Oct 2024 21:50:11 +0200 Subject: [PATCH] FIX: do not explicitly run `mypy` in `sty` job --- tox.ini | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 8b44adc..028af9a 100644 --- a/tox.ini +++ b/tox.ini @@ -135,11 +135,9 @@ setenv = [testenv:sty] allowlist_externals = - mypy pre-commit commands = - mypy docs src tests # run separately because of potential caching problems - pre-commit run {posargs} -a + pre-commit run {posargs} --all-files description = Perform all linting, formatting, and spelling checks setenv = - SKIP = mypy, pyright + SKIP = pyright