From 691fe739626f40cef74cde13ae11c036f61e920e Mon Sep 17 00:00:00 2001 From: Christopher Broderick Date: Thu, 21 Aug 2025 10:40:48 +0100 Subject: [PATCH] Print the Django version when invoking the tests --- quicktest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quicktest.py b/quicktest.py index 3aad1256..a12613b6 100755 --- a/quicktest.py +++ b/quicktest.py @@ -13,6 +13,8 @@ from django.conf import settings import os import sys +print(f"Running tests using Django version {django.get_version()}...") + class QuickDjangoTest: """