Skip to content

Commit 14e16be

Browse files
committed
fix
1 parent 6003eed commit 14e16be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ clean-test: ## remove test and coverage artifacts
2323
lint:
2424
# CI env-var is set by GitHub actions
2525
ifdef CI
26-
pre-commit run --all-files --show-diff-on-failure
26+
python -m pre_commit run --all-files --show-diff-on-failure
2727
else
28-
pre-commit run --all-files
28+
python -m pre_commit run --all-files
2929
endif
30-
mypy pytest_asyncio --show-error-codes
30+
python -m mypy pytest_asyncio --show-error-codes
3131

3232
test:
3333
coverage run -m pytest tests

0 commit comments

Comments
 (0)