From 8f1b41b87105198476afcd8874a00a9b54154f19 Mon Sep 17 00:00:00 2001 From: Martijn Pieters Date: Sat, 30 Nov 2024 16:02:14 +0000 Subject: [PATCH] Re-run tox whenever the confix is changed --- dodo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dodo.py b/dodo.py index f546659..350dd02 100644 --- a/dodo.py +++ b/dodo.py @@ -159,7 +159,7 @@ def task_tox(): return { "setup": ["devsetup"], "actions": [Interactive(test_cmd)], - "file_dep": [*SRC_FILES, *TESTS_FILES], + "file_dep": [*SRC_FILES, *TESTS_FILES, HERE / "tox.ini"], "task_dep": ["lint"], }