From c64376ad16a9cb0770e61ebe89147198c1375e30 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Mon, 18 Nov 2024 12:27:44 +0000 Subject: [PATCH] aAdd tox-uv as a direct dependency --- pyproject.toml | 6 +++++- tox.ini | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 08b2a98..7cb67ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,8 @@ dependencies = [ "bindep>2.8.1", "gitpython", "packaging", - "tox" + "tox", + "tox-uv>=1.16.0" ] description = "Performs extra checks before or after running" dynamic = ["version"] @@ -138,6 +139,9 @@ known-first-party = ["src"] [tool.ruff.lint.pydocstyle] convention = "google" +[tool.pytest.ini_options] +addopts = "-ra --showlocals" + [tool.setuptools_scm] # To prevent accidental pick of mobile version tags such 'v6' git_describe_command = [ diff --git a/tox.ini b/tox.ini index 0ef7de9..b5436f7 100644 --- a/tox.ini +++ b/tox.ini @@ -6,6 +6,8 @@ envlist = pkg py py-devel +requires = + tox-uv >= 1.16.0 [testenv] usedevelop = true