We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac7e6b9 commit 1ea2e10Copy full SHA for 1ea2e10
tests/test_fastanpr.py
@@ -44,12 +44,7 @@ async def test_image_3d():
44
]
45
)
46
async def test_image_4d(file: str, expected_plates: List[str]):
47
- start = time.time()
48
predicted_plates = (await fastanpr.run([image_path_to_ndarray(str(file))]))[0]
49
- end = time.time()
50
-
51
- # processing time must be less than 1 s
52
- assert (end - start) <= 1.00
53
54
# same number of plates predicted
55
assert len(predicted_plates) == len(expected_plates)
0 commit comments