Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/functional/api/test_epics.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
assert group.epics.list()


@pytest.mark.xfail(reason="404 on issue.id")

Check failure on line 18 in tests/functional/api/test_epics.py

View workflow job for this annotation

GitHub Actions / functional (api_func_v4)

test_epic_issues [XPASS(strict)] 404 on issue.id
def test_epic_issues(epic, issue):
assert not epic.issues.list()

Expand All @@ -26,7 +26,11 @@


def test_epic_notes(epic):
assert not epic.notes.list()
epic_notes_list = epic.notes.list()
if epic_notes_list:
for note in epic_notes_list:
note.pprint()
assert not epic_notes_list, f"{epic_notes_list}"

Check failure on line 33 in tests/functional/api/test_epics.py

View workflow job for this annotation

GitHub Actions / functional (api_func_v4)

test_epic_notes AssertionError: [<GroupEpicNote id:4>, <GroupEpicNote id:2>] assert not [<GroupEpicNote id:4>, <GroupEpicNote id:2>]

epic.notes.create({"body": "Test note"})
assert epic.notes.list()
2 changes: 1 addition & 1 deletion tests/functional/fixtures/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
GITLAB_IMAGE=gitlab/gitlab-ee
GITLAB_TAG=17.8.2-ee.0
GITLAB_TAG=17.9.1-ee.0
GITLAB_RUNNER_IMAGE=gitlab/gitlab-runner
GITLAB_RUNNER_TAG=92098577
Loading