-
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.
- Loading branch information
1 parent
f235636
commit 56a242f
Showing
1 changed file
with
6 additions
and
6 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
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", | ||
), | ||
), | ||
], | ||
|