Skip to content

Commit

Permalink
Move codespell into main qc workflow (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh authored Dec 18, 2024
2 parents cd28a9b + 90eb86c commit cccfacf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/codespell.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .github/workflows/qc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@ jobs:
- name: Check static typing with MyPy
run: poetry run tox -e mypy

- name: Codespell
run: poetry run tox -e codespell

- name: Unit tests only
run: poetry run python -m unittest discover tests.unit
8 changes: 8 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,11 @@ deps =
commands =
docstr-coverage src/ tests/ --skip-private --skip-magic
description = Run the docstr-coverage tool to check documentation coverage

[testenv:codespell]
description = Run spell checker.
skip_install = true
deps =
codespell
tomli # required for getting config from pyproject.toml
commands = codespell src/ tests/ -S tests/input

0 comments on commit cccfacf

Please sign in to comment.