From f3630b255864380c83e80ee38b4f54f71c69c904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Mon, 7 Jul 2025 11:20:52 +0200 Subject: [PATCH 1/2] TST: trigger test_tox workflow on edits to pyproject.toml and tox.ini --- .github/workflows/test_tox.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test_tox.yml b/.github/workflows/test_tox.yml index c847dc9..47fa7ea 100644 --- a/.github/workflows/test_tox.yml +++ b/.github/workflows/test_tox.yml @@ -4,10 +4,14 @@ on: paths: - .github/workflows/tox.yml - .github/workflows/test_tox.yml + - pyproject.toml + - tox.ini pull_request: paths: - .github/workflows/tox.yml - .github/workflows/test_tox.yml + - pyproject.toml + - tox.ini concurrency: group: ${{ github.workflow }}-${{ github.ref }} From 81ed163cf1ac461f381b268ab9632f6f50e0660b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Mon, 7 Jul 2025 11:21:14 +0200 Subject: [PATCH 2/2] BUG: fix tox env configuration --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 84196a7..bfb2569 100644 --- a/tox.ini +++ b/tox.ini @@ -57,7 +57,7 @@ commands = ruff check . [testenv:py3{10,11,12}{,-conda}] description = run pytest skip_install = false -extras = test +dependency_groups = test conda_deps = pytest commands = conda: python -c "import os, sys; assert os.path.exists(os.path.join(sys.prefix, 'conda-meta', 'history'))"