We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b42fb24 commit 23f4753Copy full SHA for 23f4753
tests/Team.py
@@ -35,6 +35,7 @@
35
################################################################################
36
37
38
+import warnings
39
from datetime import datetime
40
41
from . import Framework
@@ -121,7 +122,10 @@ def testTeamMembership(self):
121
122
123
def testRepoPermission(self):
124
repo = self.org.get_repo("FatherBeaver")
125
+ # Ignore the warning since this method is deprecated
126
+ warnings.filterwarnings("ignore", category=DeprecationWarning)
127
self.team.set_repo_permission(repo, "admin")
128
+ warnings.resetwarnings()
129
130
def testUpdateTeamRepository(self):
131
0 commit comments