-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(engine): Add and update git and ssh modules (#754)
- Loading branch information
1 parent
a12b87c
commit cc9c7c2
Showing
11 changed files
with
222 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,17 +154,17 @@ async def test_registry_async_function_can_be_called(mock_package): | |
host="github.com", | ||
org="org", | ||
repo="repo", | ||
branch="main", | ||
ref=None, | ||
), | ||
), | ||
# GitHub (with branch) | ||
# GitHub (with branch/sha) | ||
( | ||
"git+ssh://[email protected]/org/repo@branch", | ||
"git+ssh://[email protected]/org/repo@branchOrSHAOrTag", | ||
GitUrl( | ||
host="github.com", | ||
org="org", | ||
repo="repo", | ||
branch="branch", | ||
ref="branchOrSHAOrTag", | ||
), | ||
), | ||
# GitLab | ||
|
@@ -174,7 +174,7 @@ async def test_registry_async_function_can_be_called(mock_package): | |
host="gitlab.com", | ||
org="org", | ||
repo="repo", | ||
branch="main", | ||
ref=None, | ||
), | ||
), | ||
# GitLab (with branch) | ||
|
@@ -184,7 +184,7 @@ async def test_registry_async_function_can_be_called(mock_package): | |
host="gitlab.com", | ||
org="org", | ||
repo="repo", | ||
branch="branch", | ||
ref="branch", | ||
), | ||
), | ||
], | ||
|
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
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
Oops, something went wrong.