From 61e878f4b3f1fd3828cecd88ed82e39d37392e3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maksym=20Bie=C5=84kowski?= <131272310+mbienkowsk@users.noreply.github.com> Date: Wed, 28 May 2025 17:17:40 +0200 Subject: [PATCH] fix(django): make the test runner non-interactive by default (#95) --- neotest_python/django_unittest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/neotest_python/django_unittest.py b/neotest_python/django_unittest.py index fd19555..be9568d 100644 --- a/neotest_python/django_unittest.py +++ b/neotest_python/django_unittest.py @@ -64,6 +64,7 @@ class DjangoNeotestAdapter(CaseUtilsMixin, NeotestAdapter): class DjangoUnittestRunner(CaseUtilsMixin, DiscoverRunner): def __init__(self, **kwargs): django_setup() + kwargs["interactive"] = False DiscoverRunner.__init__(self, **kwargs) @classmethod