We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43fe6b1 commit 4ea989fCopy full SHA for 4ea989f
doc/source/performance.rst
@@ -4,7 +4,8 @@
4
Performance
5
===========
6
7
-
+Django management command startup time can be noticeably slow, especially for large projects with
8
+many models. We can perceive time at roughly 100 ms, bare
9
10
----------------
11
tests/test_tracebacks.py
@@ -218,15 +218,12 @@ def test_colored_traceback(self):
218
)[1]
219
self.assertNotIn("\x1b", result)
220
221
- env = os.environ.copy()
222
- if "GITHUB_ACTIONS" not in env:
223
- env["GITHUB_ACTIONS"] = "1"
224
result = run_command(
225
"test_command1",
226
"delete",
227
"Brian",
228
"--throw",
229
- env=env,
+ env={"FORCE_COLOR": "1", **os.environ},
230
231
self.assertIn("\x1b", result)
232
0 commit comments