From 47982cac108aa99d29fe11b5b6d23069128db000 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Sun, 7 Mar 2021 16:17:40 +0100 Subject: [PATCH] run most common tests only when invoking `tox` without args. envlist never really included the full list of environments, for example cibuild was already missing. This commit tries to make a reasonable tradeoff between comprehensiveness and local running time by only running the most frequent error sources. We still check everything in CI. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 00d1ef770..1e71f2ae2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38, py39, flake8, filename_matching, mypy, individual_coverage, docs +envlist = py, flake8, mypy skipsdist = True toxworkdir={env:TOX_WORK_DIR:.tox}