(self)
| 622 | self.assertEqual(installations.totalCount, 1) |
| 623 | |
| 624 | def testCreateVariable(self): |
| 625 | variable = self.org.create_variable("variable-name", "variable-value", "all") |
| 626 | self.assertIsNotNone(variable) |
| 627 | |
| 628 | def testCreateVariableSelected(self): |
| 629 | repos = [self.org.get_repo("TestPyGithub"), self.org.get_repo("FatherBeaver")] |
nothing calls this directly
no test coverage detected