We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6003eed commit 14e16beCopy full SHA for 14e16be
Makefile
@@ -23,11 +23,11 @@ clean-test: ## remove test and coverage artifacts
23
lint:
24
# CI env-var is set by GitHub actions
25
ifdef CI
26
- pre-commit run --all-files --show-diff-on-failure
+ python -m pre_commit run --all-files --show-diff-on-failure
27
else
28
- pre-commit run --all-files
+ python -m pre_commit run --all-files
29
endif
30
- mypy pytest_asyncio --show-error-codes
+ python -m mypy pytest_asyncio --show-error-codes
31
32
test:
33
coverage run -m pytest tests
0 commit comments