| 13 | # For example, the SQL Server Docker image is only supported on x86_64 so we |
| 14 | # cannot enable that feature on ARM based runners. |
| 15 | class Features: |
| 16 | AZURITE = "azurite" |
| 17 | |
| 18 | def __init__(self, features): |
| 19 | self.features = features |
| 20 | |
| 21 | def azurite_enabled(self) -> bool: |
| 22 | return self.features and self.AZURITE in self.features |
no outgoing calls