Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dev/breeze/tests/test_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

import pytest

from airflow_breeze.global_constants import ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS
from airflow_breeze.utils.cache import (
check_if_cache_exists,
check_if_values_allowed,
Expand All @@ -36,7 +37,7 @@
[
("backend", "mysql", (True, ["sqlite", "mysql", "postgres", "none", "custom"]), None),
("backend", "xxx", (False, ["sqlite", "mysql", "postgres", "none", "custom"]), None),
("python_major_minor_version", "3.10", (True, ["3.10", "3.11", "3.12", "3.13"]), None),
("python_major_minor_version", "3.10", (True, ALLOWED_PYTHON_MAJOR_MINOR_VERSIONS), None),
("missing", "value", None, AttributeError),
],
)
Expand Down
Loading