<feed xmlns='http://www.w3.org/2005/Atom'>
<title>chango.git/tests/admin_scripts, branch refs-37159</title>
<subtitle>django
</subtitle>
<id>http://cgit.adnoto.dev/chango.git/atom?h=refs-37159</id>
<link rel='self' href='http://cgit.adnoto.dev/chango.git/atom?h=refs-37159'/>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/'/>
<updated>2026-07-16T19:11:27Z</updated>
<entry>
<title>Fixed #32915 -- Suppressed fewer ImportErrors in management commands.</title>
<updated>2026-07-16T19:11:27Z</updated>
<author>
<name>Ben Cail</name>
<email>bcail@crossway.org</email>
</author>
<published>2022-11-01T18:55:40Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=537c6df3e641ebc21e9da76c86aea4d36e6a32e2'/>
<id>urn:sha1:537c6df3e641ebc21e9da76c86aea4d36e6a32e2</id>
<content type='text'>
Before, exceptions during settings loading were swallowed by management
commands. Now, if the new command attribute settings_required is True
(default), the error will be printed to stderr, and the command will
exit non-zero. makemessages, runserver, shell, and startproject continue
to tolerate missing settings (via settings_required=False).

Regression in c6864a01b25591d3a709da8071413b69c9e35341, which added
support for some commands (e.g. startproject) to cope with missing settings.

Thanks Mariusz Felisiak, Sarah Boyce, Jacob Walls, Mike Edmunds,
and Brian Helba for reviews.

Co-authored-by: Rohith PR &lt;praroh2@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fixed #36900 -- Used safe_join() on downloaded template archive.</title>
<updated>2026-06-09T15:52:09Z</updated>
<author>
<name>ar3ph</name>
<email>192461522+ar3ph@users.noreply.github.com</email>
</author>
<published>2026-04-27T21:20:49Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=46c5e76f0bcc76bfce19ad7ba07f716fc653a822'/>
<id>urn:sha1:46c5e76f0bcc76bfce19ad7ba07f716fc653a822</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #28800 -- Added a listurls management command.</title>
<updated>2026-06-01T19:24:49Z</updated>
<author>
<name>Chris Rose</name>
<email>offline@offby1.net</email>
</author>
<published>2026-05-18T17:49:34Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=9383fae0d55a553be3bda620db87fa9ee8a81478'/>
<id>urn:sha1:9383fae0d55a553be3bda620db87fa9ee8a81478</id>
<content type='text'>
Thanks JaeHyuck Sa, Jacob Walls, and Tim McCurrach for reviews.

Co-authored-by: Ülgen Sarıkavak &lt;ulgensrkvk@gmail.com&gt;
</content>
</entry>
<entry>
<title>Fixed #37096 -- Fixed test_invalid_choice_db_option on Python 3.14.5+.</title>
<updated>2026-05-12T19:16:42Z</updated>
<author>
<name>kasey</name>
<email>kstein257@gmail.com</email>
</author>
<published>2026-05-12T05:15:15Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=ed13a58bf63df94508c8a0fe779da0b6a2bc26bb'/>
<id>urn:sha1:ed13a58bf63df94508c8a0fe779da0b6a2bc26bb</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Refs #36936 - Adjusted tests to set PYTHON_COLORS environment variable.</title>
<updated>2026-02-26T13:27:33Z</updated>
<author>
<name>Pete Rosenblum</name>
<email>prosenbl@gmail.com</email>
</author>
<published>2026-02-26T04:55:18Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=71d1e92e11093feb9a337f6d77078c5e75cbb92f'/>
<id>urn:sha1:71d1e92e11093feb9a337f6d77078c5e75cbb92f</id>
<content type='text'>
When "FORCE_COLOR" was set in the environment (such as in django-docker-box)
several test cases that rely on string comparisons against exception
messages or command line results would fail due to ANSI escape sequences
being present in the output. This change resolved the issue by setting
the "PYTHON_COLORS" environment variable to "0" for those specific tests,
which takes precendence over the presence of "FORCE_COLOR".
</content>
</entry>
<entry>
<title>Fixed #36776 -- Clarified dev server runs in WSGI mode.</title>
<updated>2026-01-26T15:45:40Z</updated>
<author>
<name>jafarkhan83</name>
<email>jafarkhan.master@gmail.com</email>
</author>
<published>2026-01-26T09:26:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=2e83eb5e78e8036141ae5b810fba4fd9e800f51f'/>
<id>urn:sha1:2e83eb5e78e8036141ae5b810fba4fd9e800f51f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed #36321 -- Defaulted suggest_on_error=True in management commands.</title>
<updated>2025-11-20T20:40:07Z</updated>
<author>
<name>kihuni</name>
<email>stephenkihuni55@gmail.com</email>
</author>
<published>2025-11-02T05:50:45Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=b1a65eac7c09250d36e12464fc8fff2a401246b6'/>
<id>urn:sha1:b1a65eac7c09250d36e12464fc8fff2a401246b6</id>
<content type='text'>
Python 3.15 defaults suggest_on_error=True, but the feature is available
from 3.14, so this change opts in earlier. This change can be reverted
when Python 3.15 is the minimum supported version.
</content>
</entry>
<entry>
<title>Refs #36680 -- Avoided manipulating PATH in AdminScriptTestCase.</title>
<updated>2025-11-10T19:13:49Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2025-11-04T19:34:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=e78420c2b8ef62acb6b7a37b71e3aa6833d630fb'/>
<id>urn:sha1:e78420c2b8ef62acb6b7a37b71e3aa6833d630fb</id>
<content type='text'>
This mostly reverts 6436ec321073bf0622af815e0af08f54c97f9b30,
which was fragile. Instead, if black is present, we use it to format the
expected and actual results, instead of hard-coding the expected
formatted value.

Co-authored-by: Natalia &lt;124304+nessita@users.noreply.github.com&gt;
</content>
</entry>
<entry>
<title>Refs #36680 -- Fixed admin_scripts tests crash when black is not installed.</title>
<updated>2025-10-30T11:38:17Z</updated>
<author>
<name>Mariusz Felisiak</name>
<email>felisiak.mariusz@gmail.com</email>
</author>
<published>2025-10-30T11:38:17Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=3939cd279569fde44f557d79f20bb5b1a02440af'/>
<id>urn:sha1:3939cd279569fde44f557d79f20bb5b1a02440af</id>
<content type='text'>
Regression in 6436ec321073bf0622af815e0af08f54c97f9b30.</content>
</entry>
<entry>
<title>Fixed #36680 -- Parametrized formatter discovery in AdminScriptTestCase.</title>
<updated>2025-10-28T12:02:10Z</updated>
<author>
<name>Jacob Walls</name>
<email>jacobtylerwalls@gmail.com</email>
</author>
<published>2025-10-22T16:42:00Z</published>
<link rel='alternate' type='text/html' href='http://cgit.adnoto.dev/chango.git/commit/?id=6436ec321073bf0622af815e0af08f54c97f9b30'/>
<id>urn:sha1:6436ec321073bf0622af815e0af08f54c97f9b30</id>
<content type='text'>
</content>
</entry>
</feed>
