summaryrefslogtreecommitdiff
path: root/tests/staticfiles_tests/settings.py
AgeCommit message (Collapse)Author
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-02-06Refs #32394 -- Changed STATIC_URL/MEDIA_URL to relative paths in tests and ↵Markus Holtermann
docs where appropriate.
2019-11-07Refs #29983 -- Added support for using pathlib.Path in all settings.Jon Dufresne
2017-01-25Refs #27741 -- Fixed staticfiles_tests.test_views when run in isolation.Tim Graham
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
These functions do nothing on Python 3.
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2016-03-28Cleaned class inheritances in staticfiles testsClaude Paroz
Thanks Tim Graham for precious inputs.
2015-09-09Prevented staticfiles test from colliding when run in parallel.Aymeric Augustin
This requires that each test never alters files in static directories collected by other tests. The alternative is to add a temporary directory to STATICFILES_DIRS or a new app to INSTALLED_APPS.
2015-07-01Fixed #24982 -- Split staticfiles tests into multiple filesMoritz Sichert