Changes between Initial Version and Version 1 of Ticket #35662


Ignore:
Timestamp:
Aug 8, 2024, 5:49:49 AM (6 weeks ago)
Author:
Patrick Rauscher
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35662 – Description

    initial v1  
    11Hello everyone,
    22
    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.
     3while 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.
    44
    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'".
     5This 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'".
    66
    77Of course, there are multiple ways to fix this for a given project, such as
Back to Top