summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests
Commit message (Expand)AuthorAgeFilesLines
...
* Updated test URL patterns to use path() and re_path().Tim Graham2018-12-311-2/+2
* Fixed #28606 -- Deprecated CachedStaticFilesStorage.Tim Graham2018-10-273-25/+26
* Fixed #29796 -- Added system check for STATICFILES_DIRS prefix ending with a ...Paweł Kołodziej2018-09-271-0/+10
* Fixed #29570 -- Added check that MEDIA_URL isn't in STATIC_URL.Alejandro Dubrovsky2018-08-231-0/+14
* Fixed #29689 -- Improved performance of FileSystemStorage.listdir() and FileP...Federico Bond2018-08-201-4/+4
* Fixed #28566 -- Added path matching to collectstatic ignore patterns.Daniel Wiesmann2018-07-133-3/+4
* Fixed #29464 -- Silenced post-process messages in collectstatic's default ver...Arthur Silva2018-06-111-0/+13
* Fixed #29363 -- Added SimpleTestCase.assertWarnsMessage().Morgan Aubert2018-05-091-11/+2
* Fixed #29353 -- Made StaticFilesHandler return a 404 response when settings.D...Claude Paroz2018-04-251-1/+13
* Fixed #28973 -- Silenced copying/linking messages in collectstatic's default ...Claude Paroz2018-04-232-1/+29
* Fixed hanging indentation in various code.Mariusz Felisiak2018-03-162-2/+4
* Refs #21221 -- Deprecated staticfiles and admin_static template tag libraries.Jon Dufresne2018-01-233-3/+48
* Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne2018-01-211-2/+2
* Added a couple tests for collectstatic.Mads Jensen2018-01-151-1/+12
* Removed unnecessary trailing commas and spaces in various code.Mariusz Felisiak2017-12-281-1/+1
* Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов2017-11-062-3/+3
* Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."Tim Graham2017-09-071-2/+3
* Fixed #27796 -- Prevented middleware being loaded twice with runserverClaude Paroz2017-08-231-1/+12
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-1/+6
* Fixed #27818 -- Replaced try/except/pass with contextlib.suppress().Mads Jensen2017-06-281-3/+2
* Sorted imports per isort 4.2.9.Tim Graham2017-06-011-2/+3
* Fixed #27948 -- Removed incorrect unquote() in static serving views.Tim Graham2017-03-173-2/+6
* Fixed #27741 -- Isolated TestCollectionHashedFilesCache in a tmpdir.David Sanders2017-02-031-25/+39
* Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis2017-02-011-2/+1
* Fixed #27661 -- Moved FileSystemFinder's ImproperlyConfigured exceptions to s...Ling-Xiao Yang2017-02-012-9/+77
* Refs #23919 -- Replaced tempfile.mkdtemp() with TemporaryDirectory() context ...Chillar Anand2017-01-261-19/+16
* Refs #27741 -- Fixed staticfiles_tests.test_views when run in isolation.Tim Graham2017-01-251-0/+3
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-255-27/+26
* Refs #23919 -- Replaced errno checking with PEP 3151 exceptions.Tim Graham2017-01-251-4/+2
* Removed unneeded force_text calls in the test suiteClaude Paroz2017-01-243-20/+17
* Refs #23919 -- Removed django.test.mock Python 2 compatibility shim.Tim Graham2017-01-201-1/+2
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-202-5/+2
* Refs #23919 -- Removed obsolete contextlib.closing() calls (for Python 2).Tim Graham2017-01-191-2/+1
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-194-5/+5
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-184-23/+23
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-183-7/+6
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-2/+1
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-187-15/+0
* Fixed #24452 -- Fixed HashedFilesMixin correctness with nested paths.David Sanders2017-01-113-24/+163
* Fixed #27658 -- Prevented collectstatic from overwriting newer files in remot...Tim Graham2017-01-043-2/+28
* Tested collectstatic's deleting of files/symlinks when toggling --link.Tim Graham2017-01-041-2/+14
* Refs #15035 -- Corrected a bug and improved comments for a staticfiles test.Tim Graham2017-01-032-5/+13
* Refs #25484 -- Removed incorrect unquoting in {% static %}.Tim Graham2016-12-192-2/+18
* Fixed #25484 -- Made {% static %} render escaped URLs.alix-2016-12-172-1/+3
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-103-8/+7
* Fixed #27108 -- Displayed collectstatic's delete/overwrite warnings only if s...François Freitag2016-09-021-0/+21
* Added tests for collectstatic interactivity.François Freitag2016-09-011-1/+35
* Fixed #26671 -- Made HashedFilesMixin ignore the 'chrome' scheme.Andrew Nester2016-07-122-1/+3
* Fixed #26791 -- Replaced LiveServerTestCase port ranges with binding to port 0.Tim Graham2016-06-231-14/+5
* Refs #26666 -- Added ALLOWED_HOSTS validation when running tests.Tobias McNulty2016-06-201-1/+1