We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0263f36 commit 3d0dae3Copy full SHA for 3d0dae3
Makefile
@@ -31,7 +31,9 @@ test: install
31
.PHONY: lint
32
lint: #! Run type analysis and linting checks
33
lint: install
34
- poetry run mypy ld_eventsource
+ @poetry run mypy ld_eventsource
35
+ @poetry run isort --check --atomic ld_eventsource contract-tests
36
+ @poetry run pycodestyle ld_eventsource contract-tests
37
38
#
39
# Documentation generation
pyproject.toml
@@ -35,6 +35,8 @@ urllib3 = ">=1.26.0,<3"
mock = ">=2.0.0"
pytest = ">=2.8"
mypy = "^1.4.0"
+pycodestyle = "^2.12.1"
+isort = "^5.13.2"
40
41
42
[tool.poetry.group.contract-tests]
0 commit comments