Merge pull request #8649 from sephalon/imgconverter-availability

Skip imgconverter availability check if builder supports the image type
This commit is contained in:
Takeshi KOMIYA 2021-01-04 22:17:37 +09:00 committed by GitHub
commit 41e6f152eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,15 +197,15 @@ class ImageConverter(BaseImageConverter):
def match(self, node: nodes.image) -> bool:
if not self.app.builder.supported_image_types:
return False
elif set(node['candidates']) & set(self.app.builder.supported_image_types):
# builder supports the image; no need to convert
return False
elif self.available is None:
# store the value to the class variable to share it during the build
self.__class__.available = self.is_available()
if not self.available:
return False
elif set(node['candidates']) & set(self.app.builder.supported_image_types):
# builder supports the image; no need to convert
return False
else:
rule = self.get_conversion_rule(node)
if rule: