Skip to content

Commit 69918a1

Browse files
committedFeb 1, 2019
Add pretty target to Makefile.
1 parent 5b10d48 commit 69918a1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ clean-test: ## remove test and coverage artifacts
5353
lint: ## check style with flake8
5454
flake8 pymt tests
5555

56+
pretty: ## reformat files to make them look pretty
57+
find pymt -name '*.py' | xargs isort
58+
find tests -name '*.py' | xargs isort
59+
black setup.py pymt tests
60+
5661
test: ## run tests quickly with the default Python
5762
py.test
5863

0 commit comments

Comments
 (0)