ci: add migration 0027 to expected strings

This commit is contained in:
Alexandre Aubin 2024-07-11 15:53:34 +02:00
parent 0bffcbae76
commit e8c171fd83

View file

@ -32,6 +32,7 @@ def find_expected_string_keys():
python_files = glob.glob(ROOT + "src/*.py")
python_files.extend(glob.glob(ROOT + "src/utils/*.py"))
python_files.extend(glob.glob(ROOT + "src/migrations/*.py"))
python_files.extend(glob.glob(ROOT + "src/migrations/*.py.disabled"))
python_files.extend(glob.glob(ROOT + "src/authenticators/*.py"))
python_files.extend(glob.glob(ROOT + "src/diagnosers/*.py"))
python_files.append(ROOT + "bin/yunohost")
@ -75,6 +76,9 @@ def find_expected_string_keys():
continue
yield "migration_description_" + os.path.basename(path)[:-3]
# FIXME: to be removed in bookworm branch
yield "migration_description_0027_migrate_to_bookworm"
# For each default service, expect to find "service_description_<name>"
for service, info in yaml.safe_load(
open(ROOT + "conf/yunohost/services.yml")