Skip to content

Commit

Permalink
Add improved build process
Browse files Browse the repository at this point in the history
  • Loading branch information
fluffy-critter committed Jul 15, 2019
1 parent bdb9091 commit 425446c
Show file tree
Hide file tree
Showing 5 changed files with 123 additions and 119 deletions.
7 changes: 6 additions & 1 deletion Makefile
@@ -1,8 +1,13 @@
all: pylint flake8

.PHONY: format
format:
pipenv run isort -y
pipenv run autopep8 -r --in-place .

.PHONY: pylint
pylint:
pipenv run pylint -f colorized pushl
pipenv run pylint pushl

.PHONY: flake8
flake8:
Expand Down
2 changes: 2 additions & 0 deletions Pipfile
Expand Up @@ -7,6 +7,8 @@ verify_ssl = true
pylint = "*"
flake8 = "*"
twine = "*"
isort = "*"
autopep8 = "*"

[packages]
pushl = {editable = true,path = "."}
Expand Down

0 comments on commit 425446c

Please sign in to comment.