Adds a few more test cases for coverage and adds no coverage to some others

This commit is contained in:
Trenton Holmes
2022-06-13 11:33:30 -07:00
parent 361c255e46
commit 39ee284fcd
8 changed files with 128 additions and 39 deletions

View File

@@ -87,10 +87,10 @@ def _convert_thumbnails_to_webp(apps, schema_editor):
) as pool:
pool.map(_do_convert, work_packages)
end = time.time()
duration = end - start
end = time.time()
duration = end - start
logger.info(f"Conversion completed in {duration:.3f}s")
logger.info(f"Conversion completed in {duration:.3f}s")
class Migration(migrations.Migration):