(self)
| 189 | self.assertFalse(environment.deployment_branch_policy.custom_branch_policies) |
| 190 | |
| 191 | def testDeleteEnvironment(self): |
| 192 | self.repo.delete_environment("test") |
| 193 | with pytest.raises(github.UnknownObjectException): |
| 194 | self.repo.get_environment("test") |
| 195 | |
| 196 | def testEnvironmentVariable(self): |
| 197 | repo = self.g.get_repo("AndrewJDawes/PyGithub") |
nothing calls this directly
no test coverage detected