precommit: enable codespell (#291)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
Jirka Borovec 2023-09-28 18:09:10 +02:00 committed by GitHub
parent 4b4138870b
commit 028028fbfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View File

@ -4,6 +4,11 @@ repos:
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/codespell-project/codespell
rev: v2.2.5
hooks:
- id: codespell
#args: ["--write-changes"] # uncomment if you want to get automatic fixing
- repo: https://github.com/myint/docformatter
rev: v1.7.5
hooks:

View File

@ -79,13 +79,13 @@
> - Dropped support for python [3.3]{.title-ref} and added support for python [3.7]{.title-ref} and [3.8]{.title-ref}
- Another problem with older version was that tests setup was convoluted and involved loading packages pickled from one
env into the current env (in which tests are run). Moreover there was no separation between unit tests and integration
tests (flaky)
env into the current env (in which tests are run). Moreover, there was no separation between unit tests and
integration tests (flaky)
> - Tests have been separated into 2 suites (1) unit tests that totally rely on mock objects and run on every commit (
> travis.ci) and (2) end-to-end tests that need to be run manually.
> - The test setup for end-to-end tests has been greatly simplified although the \"flakyness\"\" still remains because
> these tests are run against unpinned versions of [pip]{.title-ref}. However this is by design because we want to
> - The test setup for end-to-end tests has been greatly simplified although the \"flakiness\" still remains because
> these tests are run against unpinned versions of [pip]{.title-ref}. However, this is by design because we want to
> know when [pipdeptree]{.title-ref} fails with a new version of [pip]{.title-ref}.
- Move continuous integration from Travis to Github Actions.