Changes between Initial Version and Version 1 of Ticket #35662
- Timestamp:
- Aug 8, 2024, 5:49:49 AM (4 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35662 – Description
initial v1 1 1 Hello everyone, 2 2 3 while migrating from django 5.0 to 5.1, I experienced a change in behavior when running unittests. We are using ManifestStaticFilesStorage, and during development and unittesting, collectstatic have never been called, as static files were only required for the final result.3 while migrating from django 5.0.8 to 5.1, I experienced a change in behavior when running unittests. We are using ManifestStaticFilesStorage, and during development and unittesting, collectstatic have never been called, as static files were only required for the final result. 4 4 5 This did not pose a problem in 5.0 , but after switching to 5.1, tests using templates with static-templatetags failed with "Missing staticfiles manifest entry for 'admin/css/base.css'".5 This did not pose a problem in 5.0.8, but after switching to 5.1, tests using templates with static-templatetags failed with "Missing staticfiles manifest entry for 'admin/css/base.css'". 6 6 7 7 Of course, there are multiple ways to fix this for a given project, such as