resolve test 2
Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2607>
This commit is contained in:
parent
6dea3f3cf8
commit
d3b27b4ba9
|
@ -429,3 +429,8 @@ def clear_license_cache(db):
|
|||
@pytest.fixture
|
||||
def faker():
|
||||
return factory.Faker._get_faker()
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def dont_check_mbid(settings):
|
||||
settings.ONLY_ALLOW_MUSICBRAINZ_TAGGED_FILES = False
|
||||
|
|
|
@ -364,7 +364,7 @@ def test_handle_modified_update_existing_path_if_found_and_attributed_to(
|
|||
update_track_metadata.assert_not_called()
|
||||
|
||||
|
||||
def test_import_files(factories, capsys):
|
||||
def test_import_files(factories, capsys, dont_check_mbid):
|
||||
# smoke test to ensure the command run properly
|
||||
library = factories["music.Library"](actor__local=True)
|
||||
call_command(
|
||||
|
|
Loading…
Reference in New Issue