-
Notifications
You must be signed in to change notification settings - Fork 347
split testing libraries from run libraries in dependencies.yaml #5447
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -62,6 +62,15 @@ files: | |||||||||||||
| - depends_on_libcugraph | ||||||||||||||
| - depends_on_libcugraph_etl | ||||||||||||||
| - depends_on_libcugraph_tests | ||||||||||||||
| run_notebooks: | ||||||||||||||
| output: none | ||||||||||||||
| includes: | ||||||||||||||
| - cuda_version | ||||||||||||||
| - py_version | ||||||||||||||
| - run_notebooks | ||||||||||||||
| - depends_on_cugraph | ||||||||||||||
| - depends_on_pylibcugraph | ||||||||||||||
| - depends_on_libcugraph | ||||||||||||||
| test_notebooks: | ||||||||||||||
| output: none | ||||||||||||||
| includes: | ||||||||||||||
|
|
@@ -483,8 +492,8 @@ dependencies: | |||||||||||||
| - output_types: [conda, requirements] | ||||||||||||||
| packages: | ||||||||||||||
| - certifi | ||||||||||||||
| - ipython | ||||||||||||||
| - notebook>=0.5.0 | ||||||||||||||
| - &ipython ipython | ||||||||||||||
| - ¬ebook notebook>=0.5.0 | ||||||||||||||
| test_python_common: | ||||||||||||||
| common: | ||||||||||||||
| - output_types: [conda, pyproject, requirements] | ||||||||||||||
|
|
@@ -494,17 +503,28 @@ dependencies: | |||||||||||||
| - pytest-benchmark | ||||||||||||||
| - pytest-cov | ||||||||||||||
| - pytest-xdist | ||||||||||||||
| - scipy | ||||||||||||||
| - &scipy scipy | ||||||||||||||
| test_python_cugraph: | ||||||||||||||
| common: | ||||||||||||||
| - output_types: [conda, pyproject, requirements] | ||||||||||||||
| packages: | ||||||||||||||
| - certifi | ||||||||||||||
| - networkx>=2.5.1 | ||||||||||||||
| - &networkx networkx>=2.5.1 | ||||||||||||||
| - *numpy | ||||||||||||||
| - packaging | ||||||||||||||
| - python-louvain | ||||||||||||||
| - scikit-learn>=0.23.1 | ||||||||||||||
| # Runtime dependencies for included cugraph notebooks, used in the | ||||||||||||||
| # rapidsai/notebooks Docker image. Only lists packages not already | ||||||||||||||
| # provided by cugraph, pylibcugraph, or libcugraph. | ||||||||||||||
|
Comment on lines
+517
to
+519
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I might not have been clear in my previous comments, sorry. This should be anything that's directly imported in the notebooks and isn't part of the standard library. |
||||||||||||||
| run_notebooks: | ||||||||||||||
| common: | ||||||||||||||
| - output_types: [conda] | ||||||||||||||
| packages: | ||||||||||||||
| - *ipython | ||||||||||||||
| - *networkx | ||||||||||||||
| - *notebook | ||||||||||||||
| - *scipy | ||||||||||||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Very nice! This is exactly what I was envisioning. Looking at the output of this: git grep 'import' notebooks/And the subset of notebooks actually tested in I think we need a few more entries here:
Note that |
||||||||||||||
| test_python_pylibcugraph: | ||||||||||||||
| common: | ||||||||||||||
| - output_types: [conda, pyproject, requirements] | ||||||||||||||
|
|
||||||||||||||
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.
There are some direct imports of
cudfin these notebooks. I thinkcudfshould be added to this list.