Skip to content

Commit

Permalink
Temporal fix to allow test to pass for prod image
Browse files Browse the repository at this point in the history
  • Loading branch information
ephraimbuddy committed Mar 27, 2024
1 parent d48b910 commit bfc31ca
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker_tests/test_prod_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
SLIM_IMAGE_PROVIDERS = [
f"apache-airflow-providers-{provider_id.replace('.','-')}"
for provider_id in PRE_INSTALLED_PROVIDERS
if not provider_id.startswith("#")
]
if not provider_id.startswith("#") and "fab" not in provider_id
] + ["apache-airflow-providers-fab"]
REGULAR_IMAGE_PROVIDERS = [
f"apache-airflow-providers-{provider_id.replace('.','-')}"
for provider_id in PROD_IMAGE_PROVIDERS_FILE_PATH.read_text().splitlines()
if not provider_id.startswith("#")
]
if not provider_id.startswith("#") and "fab" not in provider_id
] + ["apache-airflow-providers-fab"]


class TestCommands:
Expand Down

0 comments on commit bfc31ca

Please sign in to comment.