Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.1
rev: v0.14.4
hooks:
- id: ruff-check
args: [--fix]
- id: ruff-format
- repo: https://github.com/codespell-project/codespell
rev: v2.1.0
rev: v2.4.1
hooks:
- id: codespell
exclude: |
Expand All @@ -23,7 +23,7 @@ repos:
^CHANGELOG.md$|
)
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v0.991'
rev: 'v1.18.2'
hooks:
- id: mypy
additional_dependencies: [types-cachetools]
Expand Down Expand Up @@ -55,7 +55,7 @@ repos:
- id: rapids-dependency-file-generator
args: ["--clean", "--warn-all", "--strict"]
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
rev: v0.11.0.1
hooks:
- id: shellcheck

Expand Down
2 changes: 1 addition & 1 deletion ci/test_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rapids-logger "Check GPU usage"
nvidia-smi

EXITCODE=0
# shellcheck disable=SC2317
# shellcheck disable=SC2329
set_exit_code() {
EXITCODE=$?
rapids-logger "Test failed with error ${EXITCODE}"
Expand Down
2 changes: 1 addition & 1 deletion ci/test_python_ucxx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ rapids-logger "Check GPU usage"
nvidia-smi

EXITCODE=0
# shellcheck disable=SC2317
# shellcheck disable=SC2329
set_exit_code() {
EXITCODE=$?
rapids-logger "Test failed with error ${EXITCODE}"
Expand Down
2 changes: 1 addition & 1 deletion ci/test_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RAPIDS_TESTS_DIR=${RAPIDS_TESTS_DIR:-"${PWD}/test-results"}
mkdir -p "${RAPIDS_TESTS_DIR}"

EXITCODE=0
# shellcheck disable=SC2317
# shellcheck disable=SC2329
set_exit_code() {
EXITCODE=$?
rapids-logger "Test failed with error ${EXITCODE}"
Expand Down