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
cugraph Python tests that use the dataset package may end up downloading the same test data multiple times when the download=True arg is set, as seen below:
E = dataset.get_edgelist(download=True)
This could be needed as a workaround for supporting pytest-xdist where different parallel runs are deleting downloaded test data as part of a cleanup step (just a guess). Ideally tests can read tests data from a previous download step, or even better, if a CI run has access to the source repo which includes test data, no download step would be needed at all.