summaryrefslogtreecommitdiff
path: root/tests/shell
Commit message (Collapse)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-27/+33
|
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-4/+1
| | | | | | | | | | | | | | | | | In these cases Black produces unexpected results, e.g. def make_random_password( self, length=10, allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789', ): or cursor.execute(""" SELECT ... """, [table name], )
* Refs #32956 -- Updated words ending in -wards.David Smith2021-07-301-1/+1
| | | | AP styleguide: Virtually none of the words ending with -wards end with an s.
* Fixed #32183 -- Fixed shell crash when passing code with nested scopes.William Schwartz2020-11-111-0/+23
|
* Refs #25680 -- Added shell tests for globals available in passed commands.Mariusz Felisiak2020-11-111-0/+18
|
* Replaced django.test.utils.patch_logger() with assertLogs().Claude Paroz2018-05-071-4/+3
| | | | Thanks Tim Graham for the review.
* Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.Tim Graham2017-01-201-1/+2
|
* Fixed #27721 -- Added interface name to shell's IPython/bython import error.Peter Inglesby2017-01-121-1/+22
|
* Fixed #27600 -- Suppressed the REPL during shell's reading from stdin.jpic2016-12-211-2/+14
| | | | Thanks Adam Chainz for review and guidance.
* Fixed #25680 -- Added django-admin shell --command option.Niels Van Och2016-01-062-0/+19
Add a -c option to the shell command to execute a command passed as a string as Django.