diff --git a/dev/breeze/src/airflow_breeze/utils/selective_checks.py b/dev/breeze/src/airflow_breeze/utils/selective_checks.py index 202743ce4fa2a..8328fffc91b3f 100644 --- a/dev/breeze/src/airflow_breeze/utils/selective_checks.py +++ b/dev/breeze/src/airflow_breeze/utils/selective_checks.py @@ -95,7 +95,7 @@ ) # Set to True to enter a translation freeze period. Set to False to exit a translation freeze period. -FAIL_WHEN_ENGLISH_TRANSLATION_CHANGED = True +FAIL_WHEN_ENGLISH_TRANSLATION_CHANGED = False class FileGroupForCi(Enum): diff --git a/dev/breeze/tests/test_selective_checks.py b/dev/breeze/tests/test_selective_checks.py index 4285701f7e99a..cbb03f19c9e66 100644 --- a/dev/breeze/tests/test_selective_checks.py +++ b/dev/breeze/tests/test_selective_checks.py @@ -2425,6 +2425,7 @@ def test_mypy_matches( assert_outputs_are_printed(expected_outputs, str(stderr)) +@patch("airflow_breeze.utils.selective_checks.FAIL_WHEN_ENGLISH_TRANSLATION_CHANGED", True) def test_ui_english_translation_changed_fail_on_change(): translation_file = "airflow-core/src/airflow/ui/public/i18n/locales/en/some_file.json" with pytest.raises(SystemExit):