Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ else
PYTHON = MONKEYTYPE_TRACE_MODULES=into_dbus_python monkeytype run
endif

ISORT_MODULES = monkeytype_config.py setup.py src tests

MONKEYTYPE_MODULES = into_dbus_python._signature

.PHONY: lint
Expand Down Expand Up @@ -33,12 +35,12 @@ coverage:

.PHONY: fmt
fmt:
isort setup.py src tests monkeytype_config.py
isort ${ISORT_MODULES}
black .

.PHONY: fmt-travis
fmt-travis:
isort --diff --check-only setup.py src tests
isort --diff --check-only ${ISORT_MODULES}
black . --check

.PHONY: upload-release
Expand Down
Loading