We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a89027e commit 789de32Copy full SHA for 789de32
tests/functional/conftest.py
@@ -94,7 +94,11 @@ def reset_gitlab(gl: gitlab.Gitlab) -> None:
94
helpers.safe_delete(deploy_token)
95
logging.info(f"Deleting project: {project.path_with_namespace!r}")
96
helpers.safe_delete(project)
97
+
98
+ full_paths = [group.full_path for group in gl.groups.list()]
99
+ logging.info(f"Groups to be deleted: {full_paths}")
100
for group in gl.groups.list():
101
+ logging.info(f"Current group: {group.full_path!r}, group_id: {group.get_id()}")
102
for deploy_token in group.deploytokens.list():
103
logging.info(
104
f"Deleting deploy token: {deploy_token.username!r} in "
0 commit comments