-
Notifications
You must be signed in to change notification settings - Fork 304
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
Fixes bug in NumberMap
preventing use of string vertex IDs for MG graphs
#2688
Fixes bug in NumberMap
preventing use of string vertex IDs for MG graphs
#2688
Conversation
…using it to use the incoming data type instead of the mapped type, which matters more when strings are passed in since they must be mapped to ints. Added new MG test that uses string vertex IDs. Cleaned up and fixed bugs in various MG test files that prevented pytest from discovering and running all tests in the "mg" test directory.
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## branch-22.10 #2688 +/- ##
===============================================
Coverage ? 60.10%
===============================================
Files ? 112
Lines ? 6151
Branches ? 0
===============================================
Hits ? 3697
Misses ? 2454
Partials ? 0 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 at Codecov. |
…() instead of a tempfile and `read_csv()`.
LGTM - would like to see single GPU dask testing |
Good idea, I filed #2714 for that. |
@gpucibot merge |
fixes #2686
Summary
pagerank
using both SG and MG versions and ensures the results are identical. This new test was based on the code provided in issue How to read the graph edge if the node value is non-numerical #2686pytest
from collecting tests when the entiremg
suite was specified. This probably would have been uncovered sooner if the MNMG nightly tests were configured to run differently (they run individual test files instead of havingpytest
collect all tests from themg
directory).