11 lines
248 B
Python
11 lines
248 B
Python
from itertools import starmap
|
|
|
|
import pytest
|
|
|
|
from image_prediction.image_extractor.extractor import ImageMetadataPair
|
|
|
|
|
|
@pytest.fixture
|
|
def image_metadata_pairs(images, metadata):
|
|
return list(starmap(ImageMetadataPair, zip(images, metadata)))
|