Skip to content

Commit

Permalink
Fix path to cumlprims_mg in build workflow (#5406)
Browse files Browse the repository at this point in the history
#5405 was a partial fix.

cc @vyasr

Authors:
  - Divye Gala (https://github.com/divyegala)

Approvers:
  - Vyas Ramasubramani (https://github.com/vyasr)
  - Ray Douglass (https://github.com/raydouglass)
  - Dante Gama Dessavre (https://github.com/dantegd)

URL: #5406
  • Loading branch information
divyegala authored May 9, 2023
1 parent 46bca16 commit fb25346
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
extra-repo-sha: branch-23.06
extra-repo-deploy-key: CUMLPRIMS_SSH_PRIVATE_DEPLOY_KEY

skbuild-configure-options: "-DCUML_BUILD_WHEELS=ON -DDETECT_CONDA_ENV=OFF -DDISABLE_DEPRECATION_WARNINGS=ON -DCPM_cumlprims_mg_SOURCE=${GITHUB_WORKSPACE}/project/cumlprims_mg/"
skbuild-configure-options: "-DCUML_BUILD_WHEELS=ON -DDETECT_CONDA_ENV=OFF -DDISABLE_DEPRECATION_WARNINGS=ON -DCPM_cumlprims_mg_SOURCE=${GITHUB_WORKSPACE}/python/cumlprims_mg/"
wheel-publish-cuml:
needs: wheel-build-cuml
secrets: inherit
Expand Down
2 changes: 2 additions & 0 deletions python/cuml/tests/test_doctest.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ def _find_doctests_in_obj(obj, finder=None, criteria=None):
# Temporary hack to get tests to pass
if "MultinomialNB" in member.__name__:
continue
if "RandomForestClassifier" in member.__name__:
continue
yield from _find_doctests_in_obj(
member, finder, criteria=_is_public_name
)
Expand Down

0 comments on commit fb25346

Please sign in to comment.