diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a79ee9575..162878aa3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,9 +51,7 @@ jobs: run: jupyter labextension list 2>&1 | grep bqplot - name: Discover typos with codespell - run: | - pip install codespell - codespell --ignore-words-list="afterall,curvelinear,hist" --skip="*.csv,*.json,*.lock" + run: codespell --ignore-words-list="afterall,curvelinear,hist" --skip="./share,./.git/*,./js/node_modules/*,./js/dist/*,*.csv,*.json,*.lock,*.map" - name: Python PEP8 check run: flake8 bqplot --ignore=E501,W504,W503 diff --git a/test-environment.yml b/test-environment.yml index 47ead6205..5f0c20f18 100644 --- a/test-environment.yml +++ b/test-environment.yml @@ -20,3 +20,4 @@ dependencies: - selenium - flake8 - nose + - codespell