Run codespell from where it is installed by pip

And disable the (useful) warning about this directory not being in PATH.
This commit is contained in:
Vadim Zeitlin
2020-07-13 17:33:50 +02:00
parent d432b1a685
commit 77e1e6330b

View File

@@ -36,8 +36,8 @@ jobs:
- name: Install codespell
run: |
pip install codespell==1.17.1
pip install --no-warn-script-location codespell==1.17.1
- name: Run codespell
run: |
codespell -I misc/suppressions/codespell-words -x misc/suppressions/codespell-lines -S 'docs/changes.txt,docs/changes_30.txt,*.png,*.ico,*.bmp,*.cur,docs/doxygen/images' README.md docs include interface
$HOME/.local/bin/codespell -I misc/suppressions/codespell-words -x misc/suppressions/codespell-lines -S 'docs/changes.txt,docs/changes_30.txt,*.png,*.ico,*.bmp,*.cur,docs/doxygen/images' README.md docs include interface