-
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
FIX: Allow any iterable for ShellOutSpec requires #631
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #631 +/- ##
==========================================
- Coverage 81.75% 81.71% -0.05%
==========================================
Files 20 20
Lines 4390 4391 +1
Branches 1263 0 -1263
==========================================
- Hits 3589 3588 -1
- Misses 797 803 +6
+ Partials 4 0 -4
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 4 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
field_required_OR = fld.metadata["requires"] | ||
required_fields = list(fld.metadata["requires"]) | ||
if all([isinstance(el, list) for el in required_fields]): | ||
field_required_OR = required_fields | ||
# if requires is a list of tuples/strings - I'm creating a 1-el nested list |
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.
I'm a little confused by this one. The type checking is divorced from the semantics. Why should this be a list of lists of tuples or strings? It's hard to reason about the effects of converting an arbitrary iterable to a list when the meaning of the tuples and strings (both iterables) are opaque.
Instead of having this here in this function, I'd rather have a separate function:
def canonicalize_requires(requires):
"""Canonicalize a requirement to a nested list of lists of requirements
Fully specified requirements are a list of lists of strings or tuples that have the form
``[["abc", "def"], ...]`` or ``[[("abc", "def"), ("ghi", "jkl")], ...]``. For brevity, we permit the following
forms.
>>> # some example code
Non-list iterables are also accepted:
>>> canonicalize_requirements({"abc", "def"})
[["abc", "def"]]
"""
...
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.
I did not want to change the semantics too much in this PR so I did not attempt to refactor the code. The code flow could be improved.
The idea remains that I should be able to do:
metadata={
...,
"requires": {"foo", "bar"},
}
or
metadata={
...,
"requires": ["foo", "bar"],
}
and the most straightfoward way was to normalize Iterable
to list
internally first.
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.
If you want to keep refactoring/modifying semantics for a separate PR, that's fine by me.
Co-authored-by: Chris Markiewicz <[email protected]>
I just want add that I slightly distinguish between lists and tuples, at least for the inner element of the main list. My idea was:
I'm not saying that we can't change the main container to a set, but it would be good to keep this logic |
Thanks for clarifying @djarecka The goal is to keep the semantics you listed, whilst allowing May I ask why the choice went for |
So if you have:
That means ("file1" AND "additional_inp_A") OR ("file1" AND "additional_inp_B") |
Types of changes
Summary
Specifying the
requires
metadata for a field inShellOutSpec
as aset
instead of alist
bypasses part of the metadata checker resulting in an Exception further down the implementation.This fix allow to specify the
requires
metadata forShellOutSpec
as any iterable (including a set), instead of being restricted to alist
. It's then explicitly transformed to a list of list by the metadata checker, if necessary.