Skip to content

Commit 88af385

Browse files
committed
update and add comments, automate spell checking
1 parent c70e4b5 commit 88af385

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,19 @@ lock:
3333
test:
3434
pytest --benchmark-disable
3535

36+
# run benchmark tests to compare performance between alternative implementations
3637
benchmark:
3738
pytest --benchmark-enable
3839

40+
# check code coverage
3941
coverage:
4042
coverage run -m pytest --benchmark-disable
4143
coverage report --fail-under=100
4244

4345
# lint code in local development
4446
lint: format-code code-analysis
4547

46-
# check code linting during continious integration
48+
# check code linting during continuous integration
4749
ci-lint: check-code-formatting code-analysis
4850

4951
# analyse and re-format code
@@ -70,6 +72,10 @@ code-analysis:
7072
# build and test the entire project
7173
build: lock install lint coverage
7274

75+
check-spelling:
76+
codespell
77+
7378
# install poetry using recommended way
7479
get-poetry:
7580
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
81+

0 commit comments

Comments
 (0)