From e492a51510e54f6a0471af6689ae936fa6ff2c1d Mon Sep 17 00:00:00 2001 From: "Claude (Opus 4.6)" Date: Mon, 23 Mar 2026 18:25:17 +0000 Subject: [PATCH] [claude] Separate tox unit and integration environments (#933) (#1131) --- tox.ini | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index 00cee66a..93d4e369 100644 --- a/tox.ini +++ b/tox.ini @@ -47,12 +47,10 @@ commands = # ── Test Environments ──────────────────────────────────────────────────────── [testenv:unit] -description = Fast tests — excludes e2e, functional, and external services +description = Fast unit tests — only tests marked @pytest.mark.unit commands = pytest tests/ -q --tb=short \ - --ignore=tests/e2e \ - --ignore=tests/functional \ - -m "not ollama and not docker and not selenium and not external_api and not skip_ci and not slow" \ + -m "unit and not ollama and not docker and not selenium and not external_api and not skip_ci and not slow" \ -n auto --dist worksteal [testenv:integration]