From a143e099b77189fb9b0344e763b97144309826d2 Mon Sep 17 00:00:00 2001 From: Louis Dionne Date: Thu, 16 Oct 2025 15:18:47 -0400 Subject: [PATCH] By default, run tests without pinning down all dependencies This allows running the tests under any desired (e.g. latest) dependency versions. If we want to also test a specific pinned down set of dependencies, we can do that from our CI without forcing folks to do that locally. --- pyproject.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fa17e6c2..cdc1dbf5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -115,11 +115,7 @@ env_list = ["py3", "mypy", "flake8", "docs"] [tool.tox.env.py3] description = "Run the unit tests" allowlist_externals = ["rm", "lit"] -# TODO: Make it possible to run the tests without pinning down all dependencies -deps = [ - "-r requirements.txt", - ".[dev]", -] +deps = [".[dev]"] commands = [ ["rm", "-rf", "test_run_tmp"], ["lit", "-sv", "tests"],