Skip to content

Commit 6da460b

Browse files
committed
codespell added
1 parent a7d122d commit 6da460b

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ help:
99
@echo - make clean
1010
@echo - make doc
1111

12+
codespell:
13+
codespell codespell securid.py securid/*.py tests/*.py
14+
1215
isort:
1316
isort --profile black securid tests
1417

@@ -21,7 +24,7 @@ coverage:
2124
test:
2225
pytest
2326

24-
typecheck:
27+
typecheck: codespell
2528
mypy --strict --no-warn-unused-ignores securid
2629

2730
lint:
@@ -37,7 +40,7 @@ clean:
3740
-rm -rf bin lib share pyvenv.cfg
3841

3942
venv:
40-
python3 -m virtualenv .
43+
python3 -m venv . || python3 -m virtualenv .
4144
. bin/activate; pip install -Ur requirements.txt
4245
. bin/activate; pip install -Ur requirements-dev.txt
4346

requirements-dev.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
black
22
build
3+
codespell
34
coverage[toml]
45
flake8
56
isort
@@ -11,4 +12,4 @@ sphinx
1112
twine<3.4
1213
urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability
1314
requests>=2.32.2 # not directly required, pinned by Snyk to avoid a vulnerability
14-
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
15+
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability

0 commit comments

Comments
 (0)