diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e1a27fa..1eea210 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,6 +19,11 @@ repos: - id: ruff args: ["--fix"] - id: ruff-format + - repo: https://github.com/shellcheck-py/shellcheck-py + rev: v0.10.0.1 + hooks: + - id: shellcheck + args: ["--severity=warning"] - repo: https://github.com/rapidsai/pre-commit-hooks rev: v0.6.0 hooks: diff --git a/ci/build_wheel.sh b/ci/build_wheel.sh index 0fc36fb..b8c7b57 100755 --- a/ci/build_wheel.sh +++ b/ci/build_wheel.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2023-2024, NVIDIA CORPORATION. +# Copyright (c) 2023-2025, NVIDIA CORPORATION. set -euo pipefail @@ -15,5 +15,5 @@ python -m pip wheel . -w dist -vv --no-deps --disable-pip-version-check RAPIDS_PY_WHEEL_NAME="rapids-dask-dependency" RAPIDS_PY_WHEEL_PURE="1" rapids-upload-wheels-to-s3 dist # Run tests -python -m pip install $(ls dist/*.whl)[test] +python -m pip install "$(echo dist/*.whl)[test]" python -m pytest -v tests/