-
Notifications
You must be signed in to change notification settings - Fork 59
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
TEST: Use existing file to test BET shell task #281
base: master
Are you sure you want to change the base?
Conversation
Co-authored-by: Chris Markiewicz <[email protected]>
Codecov Report
@@ Coverage Diff @@
## master #281 +/- ##
==========================================
- Coverage 86.78% 86.77% -0.01%
==========================================
Files 19 20 +1
Lines 3156 3169 +13
Branches 837 841 +4
==========================================
+ Hits 2739 2750 +11
- Misses 260 261 +1
- Partials 157 158 +1
Continue to review full report at Codecov.
|
|
||
# separate command into exec + args | ||
shelly = ShellCommandTask( | ||
name="bet_task", executable="bet", in_file=in_file, input_spec=bet_input_spec | ||
) | ||
assert shelly.inputs.executable == "bet" | ||
assert shelly.cmdline == f"bet {in_file} {in_file}_brain" | ||
# res = shelly(plugin="cf") | ||
res = shelly(plugin="cf") |
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.
since we don't really want to run bet in pydra, should we just remove the actual execution?
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.
we actually don't run this test... see the decorator
Closed and reopened to trigger RTD build. Looks like it's working. |
Probably superseded by #425? |
Types of changes
Summary
Checklist
(we are using
black
: you canpip install pre-commit
,run
pre-commit install
in thepydra
directoryand
black
will be run automatically with each commit)Acknowledgment