You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The input_name attribute of PipelineML class must be checked with a _check_input_name function before it is set to enforce inconsistency. For now, each time it is set inside the code, _check_input_name is called first. If a user modifies it, the new name must be checked first. The behavior of PipelineML is not tested when input_name is invalid, which hinders 10% test coverage.
Possible Implementation
In the PipelineML class, decorate input_name with @Property.
Description
The
input_name
attribute ofPipelineML
class must be checked with a_check_input_name
function before it is set to enforce inconsistency. For now, each time it is set inside the code,_check_input_name
is called first. If a user modifies it, the new name must be checked first. The behavior ofPipelineML
is not tested wheninput_name
is invalid, which hinders 10% test coverage.Possible Implementation
In the
PipelineML
class, decorateinput_name
with @Property.and add tests accordingly.
The text was updated successfully, but these errors were encountered: