We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a1401d commit 64a17b4Copy full SHA for 64a17b4
1 file changed
api/callcentersite/tests/system/test_management_health.py
@@ -0,0 +1,12 @@
1
+"""Smoke tests for Django management health commands."""
2
+
3
+from django.core.management import call_command
4
+from django.test import SimpleTestCase
5
6
7
+class ManagementHealthTests(SimpleTestCase):
8
+ """Ensure critical management commands run without raising errors."""
9
10
+ def test_system_check_succeeds(self) -> None:
11
+ """Running ``manage.py check`` should complete without issues."""
12
+ call_command("check")
0 commit comments