File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,17 +33,19 @@ lock:
3333test :
3434 pytest --benchmark-disable
3535
36+ # run benchmark tests to compare performance between alternative implementations
3637benchmark :
3738 pytest --benchmark-enable
3839
40+ # check code coverage
3941coverage :
4042 coverage run -m pytest --benchmark-disable
4143 coverage report --fail-under=100
4244
4345# lint code in local development
4446lint : format-code code-analysis
4547
46- # check code linting during continious integration
48+ # check code linting during continuous integration
4749ci-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
7173build : lock install lint coverage
7274
75+ check-spelling :
76+ codespell
77+
7378# install poetry using recommended way
7479get-poetry :
7580 curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python -
81+
You can’t perform that action at this time.
0 commit comments