(self)
| 639 | } |
| 640 | |
| 641 | def testEnableAutomergeDefaultValues(self): |
| 642 | # To reproduce this, the PR repository need to have the "Allow auto-merge" option enabled |
| 643 | # The default values are: |
| 644 | # - merge_method = "MERGE" |
| 645 | self.pull.enable_automerge() |
| 646 | |
| 647 | def testEnableAutomergeNotValidMergeMethod(self): |
| 648 | with pytest.raises(AssertionError): |
nothing calls this directly
no test coverage detected