Skip to content

Commit 23f4753

Browse files
Filter the DeprecationWarning in Team tests (PyGithub#1728)
With 1c55be5 merged, Team.set_repo_permission() now raises a DeprecationWarning, so filter it until the method is removed.
1 parent b42fb24 commit 23f4753

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/Team.py

+4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
################################################################################
3636

3737

38+
import warnings
3839
from datetime import datetime
3940

4041
from . import Framework
@@ -121,7 +122,10 @@ def testTeamMembership(self):
121122

122123
def testRepoPermission(self):
123124
repo = self.org.get_repo("FatherBeaver")
125+
# Ignore the warning since this method is deprecated
126+
warnings.filterwarnings("ignore", category=DeprecationWarning)
124127
self.team.set_repo_permission(repo, "admin")
128+
warnings.resetwarnings()
125129

126130
def testUpdateTeamRepository(self):
127131
repo = self.org.get_repo("FatherBeaver")

0 commit comments

Comments
 (0)