-
Notifications
You must be signed in to change notification settings - Fork 917
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable pandas pytests for
cudf.pandas
(#15147)
This PR enables `cudf.pandas` pandas pytest suite. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - Jake Awe (https://github.com/AyodeAwe) - Lawrence Mitchell (https://github.com/wence-) URL: #15147
- Loading branch information
1 parent
241825a
commit d48b904
Showing
6 changed files
with
46 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
- wheel-tests-dask-cudf | ||
- devcontainer | ||
- unit-tests-cudf-pandas | ||
# - pandas-tests | ||
- pandas-tests | ||
#- pandas-tests-diff | ||
#- pandas-tests-diff-comment | ||
secrets: inherit | ||
|
@@ -156,21 +156,20 @@ jobs: | |
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
# This selects "ARCH=amd64 + the latest supported Python + CUDA". | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
build_type: pull-request | ||
script: ci/cudf_pandas_scripts/run_tests.sh | ||
# pandas-tests: | ||
# # run the Pandas unit tests using PR branch | ||
# needs: wheel-build-cudf | ||
# secrets: inherit | ||
# uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
# with: | ||
# matrix_filter: map(select(.ARCH == "amd64")) | max_by(.CUDA_VER) | [.] | ||
# build_type: pull-request | ||
# script: ci/cudf_pandas_scripts/pandas-tests/run.sh pr | ||
# # Hide test failures because they exceed the GITHUB_STEP_SUMMARY output limit. | ||
# test_summary_show: "none" | ||
pandas-tests: | ||
# run the Pandas unit tests using PR branch | ||
needs: wheel-build-cudf | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
build_type: pull-request | ||
script: ci/cudf_pandas_scripts/pandas-tests/run.sh pr | ||
# Hide test failures because they exceed the GITHUB_STEP_SUMMARY output limit. | ||
test_summary_show: "none" | ||
#pandas-tests-diff: | ||
# # diff the results of running the Pandas unit tests and publish a job summary | ||
# needs: [pandas-tests-main, pandas-tests-pr] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,15 +115,15 @@ jobs: | |
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
script: ci/cudf_pandas_scripts/run_tests.sh | ||
# pandas-tests: | ||
# # run the Pandas unit tests | ||
# secrets: inherit | ||
# uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
# with: | ||
# matrix_filter: map(select(.ARCH == "amd64")) | max_by(.CUDA_VER) | [.] | ||
# build_type: nightly | ||
# branch: ${{ inputs.branch }} | ||
# date: ${{ inputs.date }} | ||
# sha: ${{ inputs.sha }} | ||
# # pr mode uses the HEAD of the branch, which is also correct for nightlies | ||
# script: ci/cudf_pandas_scripts/pandas-tests/run.sh pr | ||
pandas-tests: | ||
# run the Pandas unit tests | ||
secrets: inherit | ||
uses: rapidsai/shared-workflows/.github/workflows/[email protected] | ||
with: | ||
matrix_filter: map(select(.ARCH == "amd64")) | group_by(.CUDA_VER|split(".")|map(tonumber)|.[0]) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))])) | ||
build_type: nightly | ||
branch: ${{ inputs.branch }} | ||
date: ${{ inputs.date }} | ||
sha: ${{ inputs.sha }} | ||
# pr mode uses the HEAD of the branch, which is also correct for nightlies | ||
script: ci/cudf_pandas_scripts/pandas-tests/run.sh pr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters