Skip to content
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

Add BaseCallable trait type #795

Merged
merged 9 commits into from
Jan 23, 2020
Merged

Conversation

shoeb-github
Copy link
Contributor

closes #774.

@shoeb-github shoeb-github self-assigned this Jan 22, 2020
Copy link
Member

@mdickinson mdickinson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, but please could we have a unit test?

A test that subclasses BaseCallable to modify the validation would be ideal, since that's what motivates the addition of BaseCallable. E.g., you could try writing a ZeroArgsCallable subclass of BaseCallable that verifies (using the inspect module) that the callable takes no arguments.

@shoeb-github
Copy link
Contributor Author

I added the suggested test case.

@codecov-io
Copy link

codecov-io commented Jan 22, 2020

Codecov Report

❗ No coverage uploaded for pull request base (master@d470c89). Click here to learn what that means.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff            @@
##             master     #795   +/-   ##
=========================================
  Coverage          ?   73.54%           
=========================================
  Files             ?       51           
  Lines             ?     7148           
  Branches          ?     1477           
=========================================
  Hits              ?     5257           
  Misses            ?     1481           
  Partials          ?      410
Impacted Files Coverage Δ
traits/api.py 90.32% <100%> (ø)
traits/trait_types.py 74.63% <100%> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update d470c89...4e6442e. Read the comment docs.

@mdickinson
Copy link
Member

Thank you! Please could we also have a test that covers basic use of BaseCallable: right now, the new code isn't fully covered by existing tests. (In general, when adding new functionality, I recommend running the test suite under the coverage tool: that way, you can get a sense of which parts of the new code are covered by the test suite. It's not a requirement to have 100% coverage, but common code paths should be tested.)

def test_override_validate(self):

class ZeroArgsCallable(BaseCallable):

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be good to have an explanatory docstring on this class.


def validate(self, object, name, value):
if callable(value):
sig = Signature.from_callable(value)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not just inspect.signature(value)?

@shoeb-github
Copy link
Contributor Author

Thanks for the suggestion to run tests under coverage. I will add more tests and explanatory docstring to BaseCallable.

Why not just inspect.signature(value)?
No particular reason. I will change this.

Copy link
Member

@mdickinson mdickinson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@shoeb-github shoeb-github merged commit fe9093f into master Jan 23, 2020
@shoeb-github shoeb-github deleted the feature/add-BaseCallable-trait-type branch January 23, 2020 16:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add BaseCallable
3 participants