-
Notifications
You must be signed in to change notification settings - Fork 21
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
throw ArgumentError on transitiveclosure!(::MetaGraph) #90
throw ArgumentError on transitiveclosure!(::MetaGraph) #90
Conversation
previously, this would not return an error but would not update the underlying graph structure. Note: simply calling `transitiveclosure!(G.graph)` also fails as this does not update the metadata, e.g. `G.edge_data`.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #90 +/- ##
==========================================
+ Coverage 90.09% 90.15% +0.06%
==========================================
Files 6 6
Lines 323 325 +2
==========================================
+ Hits 291 293 +2
Misses 32 32 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
can you add tests to ensure code coverage? |
added a test. awaiting maintainer approval for testing |
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.
The issue is that you didn't extend the function from Graphs, you redefined a new one.
Co-authored-by: Guillaume Dalle <[email protected]>
Oh yeah! Thanks for catching that! |
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.
thanks!
This is responsive to #89
previously, this would not return an error but would not update the underlying graph structure.
Note: simply calling
transitiveclosure!(G.graph)
also fails as this does not update the metadata, e.g.G.edge_data
.