Skip to content

Commit

Permalink
[misc] Bump python-gitlab to v4.4.0 (#1201)
Browse files Browse the repository at this point in the history
  • Loading branch information
slarse committed Jan 19, 2024
1 parent 58a6f90 commit a4180f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"more-itertools>=8.4.0",
"pluggy>=0.13.1",
"pygithub==2.1.1",
"python-gitlab==3.11.0",
"python-gitlab==4.4.0",
"tabulate>=0.8.9",
"tqdm>=4.48.2",
"typing-extensions>=3.10.0.2",
Expand Down
3 changes: 2 additions & 1 deletion system_tests/gitlab/_helpers/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

import _repobee.ext
import gitlab
import gitlab.const

from .const import (
ORG_NAME,
Expand Down Expand Up @@ -130,6 +131,6 @@ def group_assertion(expected, actual):
if member.username == TEACHER:
continue
assert member.username not in project_name
assert member.access_level == gitlab.REPORTER_ACCESS
assert member.access_level == gitlab.const.REPORTER_ACCESS

return group_assertion

0 comments on commit a4180f2

Please sign in to comment.