From 5959f915fa46328dcf8fbb95bae676e862a29a83 Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Fri, 11 Sep 2026 01:47:59 -0500 Subject: [PATCH] Note the CI dulwich install in the Git backend test docstring The docstring said these tests require dulwich without saying where that comes from. Point at the CI install now that one exists. --- netbox/core/tests/test_data_backends.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netbox/core/tests/test_data_backends.py b/netbox/core/tests/test_data_backends.py index 9f96a0cb3..0789c2981 100644 --- a/netbox/core/tests/test_data_backends.py +++ b/netbox/core/tests/test_data_backends.py @@ -62,7 +62,8 @@ class GitBackendCredentialIntegrationTestCase(TestCase): Integration tests that verify GitBackend correctly applies credential logic. These tests require dulwich to be installed and verify the full integration - of the credential handling in GitBackend.fetch(). + of the credential handling in GitBackend.fetch(). dulwich is the optional + 'git' extra, so CI installs it explicitly; see .github/workflows/ci.yml. """ def _get_clone_kwargs(self, url, **params):