Unverified Commit eb6c50cd authored by Cyrus Leung's avatar Cyrus Leung Committed by GitHub
Browse files

[Bugfix][CI/Build] Fix codespell failing to skip files in `git diff` (#5097)

parent eecd8643
...@@ -113,8 +113,11 @@ mypy vllm/logging --config-file pyproject.toml ...@@ -113,8 +113,11 @@ mypy vllm/logging --config-file pyproject.toml
mypy vllm/model_executor --config-file pyproject.toml mypy vllm/model_executor --config-file pyproject.toml
# If git diff returns a file that is in the skip list, the file may be checked anyway:
# https://github.com/codespell-project/codespell/issues/1915
# Avoiding the "./" prefix and using "/**" globs for directories appears to solve the problem
CODESPELL_EXCLUDES=( CODESPELL_EXCLUDES=(
'--skip' '*docs/source/_build/**,./tests/lora/data' '--skip' 'tests/prompts/**,./benchmarks/sonnet.txt,tests/lora/data/**,build/**'
) )
# check spelling of specified files # check spelling of specified files
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment