-
Notifications
You must be signed in to change notification settings - Fork 915
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
Add environment-agnostic scripts for running ctests and pytests #14992
Add environment-agnostic scripts for running ctests and pytests #14992
Conversation
@trxcllnt Just FYI, there are several PRs across RAPIDS adding |
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.
This is really helpful, I will definitely be using this feature when reproducing CI workflows (especially if I can get away with a "looser" reproduction for testing something specific). I am guessing this design is meant to make it easier to run tests in devcontainers?
@bdice yes this will help with running tests in devcontainers, but the primary motivation for this PR (and all the other similar ones I filed last night) is to provide a test script we can run in the DLFW/NVAIE builds. The test recipes change so frequently that it's difficult to keep the DLFW tests in sync for all repos. |
…nto fea/generic-test-scripts
…nto fea/generic-test-scripts
/merge |
Fixes error introduced in #14992 in `test_cpp_memcheck.sh` Extra line of parameters removed from the call to `run_cudf_memcheck_ctests.sh` Authors: - David Wendt (https://github.com/davidwendt) - https://github.com/jakirkham Approvers: - Bradley Dice (https://github.com/bdice) - Vyas Ramasubramani (https://github.com/vyasr) - Ray Douglass (https://github.com/raydouglass) URL: #15158
Adds environment-agnostic `ci/run_cudf_polars_pytest.sh` script, similar to the scripts added in #14992. Authors: - Paul Taylor (https://github.com/trxcllnt) Approvers: - James Lamb (https://github.com/jameslamb) URL: #16178
Description
This PR adds environment-agnostic
run_*_{ctests,pytests}.sh
scripts, and updatestest_*_{cpp,python}.sh
to call them.The
test_*_{cpp,python}.sh
scripts assume they're running in our CI environment, and they do more than just run the tests.This PR allows devs and downstream consumers to only run the tests, and skip the unrelated logic in
test_*_{cpp,python}.sh
.Checklist