Closed liamhuber closed 2 months ago
Coverage variation | Diff coverage |
---|---|
:white_check_mark: -0.01% (target: -1.00%) | :white_check_mark: 94.59% |
Codacy stopped sending the deprecated coverage status on June 5th, 2024. Learn more
Files with Coverage Reduction | New Missed Lines | % | ||
---|---|---|---|---|
io.py | 3 | 94.21% | ||
mixin/run.py | 10 | 90.2% | ||
node.py | 11 | 90.3% | ||
nodes/standard.py | 15 | 90.96% | ||
<!-- | Total: | 39 | --> |
Totals | |
---|---|
Change from base Build 10968687985: | -0.007% |
Covered Lines: | 2992 |
Relevant Lines: | 3279 |
Now we always use the same callback function, but each step of the
Runnable.run
cycle flexibly lets child classes define kwargs for each step. This lets us stop passing the callback function as an argument and just always useRunnable._finish_run
.In
Node
, the new kwargs mean we can move firing the signals over to the_run_finally
method, and take advantage of this to add a newfailed
output signal.There's a decent amount going on under the hood here, but for users there is no incompatible changes, just the new signal.