Fix(dev): fix docker development set-up (#2102)

Part-of: <https://dev.funkwhale.audio/funkwhale/funkwhale/-/merge_requests/2367>
This commit is contained in:
Marcos Peña 2023-03-17 19:50:10 +01:00 committed by Marge
commit c55a1d1da4
3 changed files with 18 additions and 10 deletions

View file

@ -15,7 +15,10 @@ def create_data(count=25):
)
for album in albums:
factories.UploadFactory.create_batch(
track__album=album, size=random.randint(3, 18)
track__album=album,
size=random.randint(3, 18),
playable=True,
in_place=True,
)