add common setting and lint

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2607>
environments/review-docs-2083-yqf2yl/deployments/18772
Petitminion 2023-11-03 16:50:29 +01:00 zatwierdzone przez Marge
rodzic 2e3205a19d
commit df6f2d919d
2 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -1484,3 +1484,10 @@ Typesense hostname. Defaults to `localhost` on non-Docker deployments and to `ty
Docker deployments.
"""
TYPESENSE_NUM_TYPO = env("TYPESENSE_NUM_TYPO", default=5)
ONLY_ALLOW_MUSICBRAINZ_TAGGED_FILES = env(
"ONLY_ALLOW_MUSICBRAINZ_TAGGED_FILES", default=False
)
"""
If True, files without a Musicbrainz id will not be uploaded.
"""

Wyświetl plik

@ -1417,7 +1417,7 @@ def test_upload_checks_mbid_tag(temp_signal, factories, mocker):
)
mocker.patch("funkwhale_api.music.models.TrackActor.create_entries")
with temp_signal(signals.upload_import_status_updated) as handler:
with temp_signal(signals.upload_import_status_updated):
tasks.process_upload(upload_id=upload.pk)
upload.refresh_from_db()