-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP fix #1330 #1566
Draft
manabuishii
wants to merge
10
commits into
main
Choose a base branch
from
fix_issue_1330
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
WIP fix #1330 #1566
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
fbed7db
WIP fix #1330
manabuishii 2414df9
Revert cwltool/process.py
manabuishii 1862895
Update to fix #1330
manabuishii 40a22d8
Merge branch 'main' into fix_issue_1330
manabuishii 59c97cf
Fix lint problem
manabuishii a7a66cf
Fix for mypy
manabu 8031b3d
Fix podman v1.0 error
manabuishii a6caace
Remove items for evalResources
manabuishii 8c08318
Add expressiontool conformance test case
manabuishii 14a2ded
Improve ExpressionTool inputs
manabuishii File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
class: Workflow | ||
cwlVersion: v1.1 | ||
inputs: | ||
inp1: | ||
type: string | ||
default: hello inp1 | ||
inp2: | ||
type: string | ||
default: hello inp2 | ||
outputs: | ||
out: | ||
type: string | ||
outputSource: step1/out | ||
steps: | ||
step1: | ||
in: | ||
in: inp1 | ||
in2: inp2 | ||
out: [out] | ||
run: fail-unspecified-input-expressiontool.cwl |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
cwlVersion: v1.0 | ||
class: ExpressionTool | ||
|
||
requirements: | ||
InlineJavascriptRequirement: {} | ||
|
||
inputs: | ||
in: | ||
type: string | ||
|
||
outputs: | ||
out: | ||
type: string | ||
|
||
expression: | | ||
${ | ||
return {"out": inputs.in +" "+inputs.in2}; | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CI doesn't run this copy of the tests, it makes a new checkout from GitHub
cwltool/conformance-test.sh
Line 41 in 7a058fe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mr-c Thanks
I will create a PullRequest about this test case (tests/fail-unconnected-expressiontool.cwl),
Repo:
https://github.com/common-workflow-language/cwl-v1.2
Branch:
1.2.1_proposed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, you can also keep it in this PR, just move the test scripts to the the test directory and add an entry to test_examples.py
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you move this file to the
tests
directory, or a sub-directory?