From e467644c5510d1a5f17ede9b3f34d1f758722b01 Mon Sep 17 00:00:00 2001 From: Phil Gyford Date: Fri, 17 Jan 2025 22:05:00 +0000 Subject: [PATCH] Fix path to django-admin For #89 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index aa0d25f..d101257 100644 --- a/tox.ini +++ b/tox.ini @@ -48,7 +48,7 @@ commands = ; posargs will be replaced with anything after the -- when calling tox, eg; ; tox -- tests.ditto.tests.test_views.DittoViewTests.test_home_templates ; would run that single test (in all environments) - coverage run django-admin test {posargs:} + coverage run --branch {envbindir}/django-admin test {posargs:} coverage report -m [testenv:ruff]