diff --git a/bob/devtools/ci.py b/bob/devtools/ci.py index f82fba466b1c763a41a629252dc843aaf901e8e2..d6e481ecd185f6fbd66fa7d397ca8a8e1dda5875 100644 --- a/bob/devtools/ci.py +++ b/bob/devtools/ci.py @@ -215,8 +215,8 @@ def select_user_condarc(paths, branch): return select_build_file("condarc", paths, branch) -def clean_betas(dry_run, username, password, includes): - """Cleans-up betas (through the CI). Executes if ``dry_run==False`` only. +def cleanup(dry_run, username, password, includes): + """Cleans-up WebDAV resources. Executes if ``dry_run==False`` only. Parameters: diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py index 1874a09e9a75feb8d406ce2fe506451ab13e0406..850005eeabfcc51376e948a59b97370eea20818a 100644 --- a/bob/devtools/scripts/ci.py +++ b/bob/devtools/scripts/ci.py @@ -20,7 +20,7 @@ from ..ci import ( select_conda_build_config, select_conda_recipe_append, select_user_condarc, - clean_betas, + cleanup, ) from ..log import verbosity_option, get_logger, echo_normal @@ -998,7 +998,7 @@ def clean_betas(dry_run): else: includes = re.compile(r'^(bob|batl|gridtk).*') - clean_betas( + cleanup( dry_run=dry_run, username=os.environ["DOCUSER"], password=os.environ["DOCPASS"],