Skip to content

Commit 6b7af06

Browse files
chore: add debug output for possible test failure
The GitHub CI keeps showing a warning happening but unable to reproduce locally.
1 parent 98f1956 commit 6b7af06

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/functional/api/test_gitlab.py

+2
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,8 @@ def test_list_all_false_nowarning(gl, recwarn):
240240
def test_list_all_true_nowarning(gl, get_all_kwargs, recwarn):
241241
"""Using `get_all=True` will disable the warning"""
242242
items = gl.gitlabciymls.list(**get_all_kwargs)
243+
for warn in recwarn:
244+
print(warn)
243245
assert not recwarn
244246
assert len(items) > 20
245247

0 commit comments

Comments
 (0)