forked from smarkets/marge-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implement HTTPS support for cloning (smarkets#225)
- Loading branch information
1 parent
b2b115b
commit 92d1568
Showing
5 changed files
with
84 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ class TestRepoManager: | |
def setup_method(self, _method): | ||
user = marge.user.User(api=None, info=dict(USER_INFO, name='Peter Parker', email='[email protected]')) | ||
self.root_dir = tempfile.TemporaryDirectory() | ||
self.repo_manager = marge.store.RepoManager( | ||
self.repo_manager = marge.store.SshRepoManager( | ||
user=user, root_dir=self.root_dir.name, ssh_key_file='/ssh/key', | ||
) | ||
|
||
|