From a7c238edc9660e6a64737779cc996189c57f67a5 Mon Sep 17 00:00:00 2001 From: Joseph H Kennedy Date: Wed, 6 Nov 2024 14:18:01 -0900 Subject: [PATCH] force uv backend for test-min-deps --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 1386948b..40b0d420 100644 --- a/noxfile.py +++ b/noxfile.py @@ -31,7 +31,7 @@ def tests(session: nox.Session) -> None: *session.posargs, ) -@nox.session(name="test-min-deps", python="3.9") +@nox.session(name="test-min-deps", python="3.9", venv_backend="uv") def test_min_deps(session: nox.Session) -> None: """Run the unit tests using the lowest compatible version of all direct dependencies.""" session.install("--resolution", "lowest-direct", "--editable", ".[test]")