Skip to content

Commit 789de32

Browse files
committed
chore: add temporary logging to debug failing fixture
1 parent a89027e commit 789de32

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/functional/conftest.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,11 @@ def reset_gitlab(gl: gitlab.Gitlab) -> None:
9494
helpers.safe_delete(deploy_token)
9595
logging.info(f"Deleting project: {project.path_with_namespace!r}")
9696
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}")
97100
for group in gl.groups.list():
101+
logging.info(f"Current group: {group.full_path!r}, group_id: {group.get_id()}")
98102
for deploy_token in group.deploytokens.list():
99103
logging.info(
100104
f"Deleting deploy token: {deploy_token.username!r} in "

0 commit comments

Comments
 (0)