-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* test putting back tag = None * push some debug info * try adding type hint * remove type hint, didn't help * type hint but no cast * no hint and no cast * put back cast * shitty hack * a little more debug info * fix if statement * missing check * fix checks again * or to and * fix tests * debug info * remove dumb hack * more debug info * more debug * check version type * try to find out why version is str None not NoneType * try new check * remove debug clutter * tidy up
- Loading branch information
Showing
3 changed files
with
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,15 +12,13 @@ | |
RemoteRepo( | ||
repo_url="https://github.com/inab/WfExS-backend.git", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
"git+https://github.com/inab/WfExS-backend.git", | ||
RemoteRepo( | ||
repo_url="https://github.com/inab/WfExS-backend.git", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
|
@@ -37,23 +35,20 @@ | |
repo_url="https://github.com/inab/WfExS-backend.git", | ||
repo_type=RepoType.Git, | ||
rel_path="workflow_examples/ipc/cosifer_test1_cwl.wfex.stage", | ||
tag="main", | ||
), | ||
), | ||
( | ||
"ssh://[email protected]:inab/WfExS-backend.git", | ||
RemoteRepo( | ||
repo_url="[email protected]:inab/WfExS-backend.git", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
"git+ssh://[email protected]:inab/WfExS-backend.git", | ||
RemoteRepo( | ||
repo_url="[email protected]:inab/WfExS-backend.git", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
|
@@ -70,23 +65,20 @@ | |
repo_url="[email protected]:inab/WfExS-backend.git", | ||
repo_type=RepoType.Git, | ||
rel_path="workflow_examples/ipc/cosifer_test1_cwl.wfex.stage", | ||
tag="main", | ||
), | ||
), | ||
( | ||
"file:///inab/WfExS-backend/.git", | ||
RemoteRepo( | ||
repo_url="file:///inab/WfExS-backend/.git", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
"git+file:///inab/WfExS-backend/.git", | ||
RemoteRepo( | ||
repo_url="file:///inab/WfExS-backend/.git", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
|
@@ -103,7 +95,6 @@ | |
repo_url="file:///inab/WfExS-backend/.git", | ||
repo_type=RepoType.Git, | ||
rel_path="workflow_examples/ipc/cosifer_test1_cwl.wfex.stage", | ||
tag="main", | ||
), | ||
), | ||
( | ||
|
@@ -119,23 +110,20 @@ | |
RemoteRepo( | ||
repo_url="[email protected]:inab/WfExS-backend", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
"https://github.com/inab/WfExS-backend", | ||
RemoteRepo( | ||
repo_url="https://github.com/inab/WfExS-backend", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
( | ||
"file:///inab/WfExS-backend", | ||
RemoteRepo( | ||
repo_url="file:///inab/WfExS-backend", | ||
repo_type=RepoType.Git, | ||
tag="main", | ||
), | ||
), | ||
], | ||
|
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