mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
ci: add migration 0027 to expected strings
This commit is contained in:
parent
0bffcbae76
commit
e8c171fd83
1 changed files with 4 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue