10 lines
247 B
Python
10 lines
247 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))) |