Test thread concurrent reading of images in various formats.
(tmp_path, img_extension, expected_hash, img_type)
| 61 | |
| 62 | @pytest.mark.parametrize("img_extension,expected_hash,img_type", test_parameters) |
| 63 | def test_threaded_read(tmp_path, img_extension, expected_hash, img_type): |
| 64 | """Test thread concurrent reading of images in various formats.""" |
| 65 | files = create_data(tmp_path, img_extension, img_type) |
| 66 | files *= 64 |
| 67 | threaded_read_test(files, expected_hash) |
nothing calls this directly
no test coverage detected