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
Users should be able to set RAPIDS_DATASET_ROOT_DIR to an absolute path, or a path relative to their CWD, a path with sym links, etc. However, test_ecg_clustering only allows RAPIDS_DATASET_ROOT_DIR to be set in a particular way, likely due to the code here.
As an alternative to just fixing the code in test_ecg.py could be to migrate this test to use the datasets package.
The text was updated successfully, but these errors were encountered:
Closes#3235
This PR cleans up the `test_ecg.py` unit test. It removes the old way of comparing networkx results to cugraph, which used `PurePath` to compare the location of the stored dataset when getting networkx results to compare with cugraph.
Since the cugraph tests use the `Datasets` API, the golden results can be fetched based on the name of the dataset being used.
Authors:
- ralph (https://github.com/nv-rliu)
Approvers:
- Alex Barghi (https://github.com/alexbarghi-nv)
URL: #3779
Users should be able to set
RAPIDS_DATASET_ROOT_DIR
to an absolute path, or a path relative to their CWD, a path with sym links, etc. However,test_ecg_clustering
only allowsRAPIDS_DATASET_ROOT_DIR
to be set in a particular way, likely due to the code here.As an alternative to just fixing the code in
test_ecg.py
could be to migrate this test to use thedatasets
package.The text was updated successfully, but these errors were encountered: