Fixed #30802 -- Prevented manifest creation when running collectstatic in dry run mode.

This commit is contained in:
pablo 2019-09-26 12:05:32 -07:00 committed by Mariusz Felisiak
parent 45554fd5c5
commit fa8fe09e4e
2 changed files with 7 additions and 1 deletions

View File

@ -398,7 +398,8 @@ class ManifestFilesMixin(HashedFilesMixin):
def post_process(self, *args, **kwargs):
self.hashed_files = {}
yield from super().post_process(*args, **kwargs)
self.save_manifest()
if not kwargs.get('dry_run'):
self.save_manifest()
def save_manifest(self):
payload = {'paths': self.hashed_files, 'version': self.manifest_version}

View File

@ -334,6 +334,11 @@ class TestCollectionDryRun(TestNoFilesCreated, CollectionTestCase):
super().run_collectstatic(dry_run=True)
@override_settings(STATICFILES_STORAGE='django.contrib.staticfiles.storage.ManifestStaticFilesStorage')
class TestCollectionDryRunManifestStaticFilesStorage(TestCollectionDryRun):
pass
class TestCollectionFilesOverride(CollectionTestCase):
"""
Test overriding duplicated files by ``collectstatic`` management command.