(self)
| 645 | self.pull.enable_automerge() |
| 646 | |
| 647 | def testEnableAutomergeNotValidMergeMethod(self): |
| 648 | with pytest.raises(AssertionError): |
| 649 | self.pull.enable_automerge(merge_method="INVALID") |
| 650 | |
| 651 | def testEnableAutomergeError(self): |
| 652 | # To reproduce this, the PR repository need to have the "Allow auto-merge" option disabled |
nothing calls this directly
no test coverage detected