From 7f17ddc2ff0a9d903e69af932fd11cf92037f2d0 Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Tue, 12 May 2026 23:50:47 -0400 Subject: [PATCH] chore: fix tox.ini to install dev deps from pyproject.toml Replace the missing requirements-dev.txt reference with extras = dev, which installs the [dev] optional dependencies declared in pyproject.toml. Also remove skipsdist so tox installs the package before running tests. Co-Authored-By: Claude Sonnet 4.6 --- tox.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 6a2a3d1..39f5804 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,8 @@ [tox] envlist = py, lint, mypy -skipsdist = True [testenv] -deps = -rrequirements-dev.txt +extras = dev commands = pytest -q