Skip to content

Commit

Permalink
refactor(make)
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Jul 31, 2016
1 parent b485866 commit dce3878
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ lint:
test: clean lint
@echo "Running tests ..."
@python -m unittest discover
# @py.test

documentation:
@pdoc --html --overwrite --all-submodules --html-dir docs filetype
Expand All @@ -28,9 +27,11 @@ clean:
@for pattern in `cat .gitignore`; do find . -name "$$pattern" -delete; done
@echo "OK!"

release: clean docs deploy-documentation publish
compress:
@printf "Exporting to $(filename)... "
@tar czf $(filename) filetype setup.py README.md LICENSE

release: clean docs deploy-documentation compress publish
@echo "DONE!"

publish:
Expand Down

0 comments on commit dce3878

Please sign in to comment.