We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0485d06 commit 34f842bCopy full SHA for 34f842b
Makefile
@@ -16,6 +16,12 @@ format:
16
lint: format
17
poetry run flake8 aws_lambda_powertools/* tests/*
18
19
+lint-docs:
20
+ docker run -v ${PWD}:/markdown 06kellyjac/markdownlint-cli:0.28.1-alpine "docs"
21
+
22
+lint-docs-fix:
23
+ docker run -v ${PWD}:/markdown 06kellyjac/markdownlint-cli:0.28.1-alpine --fix "docs"
24
25
test:
26
poetry run pytest -m "not perf" --cov=aws_lambda_powertools --cov-report=xml
27
poetry run pytest --cache-clear tests/performance
0 commit comments