Skip to content

Commit

Permalink
Minor formatting fixes in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
omarkohl committed Oct 7, 2018
1 parent 0997e93 commit 51fee54
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
.PHONY: clean-pyc clean-build docs clean

help:
@echo "clean - remove all build, test, coverage and Python artifacts"
@echo "clean-build - remove build artifacts"
@echo "clean-pyc - remove Python file artifacts"
@echo "clean-test - remove test and coverage artifacts"
@echo "lint - check style with Flake8 and Pylint"
@echo "test - run tests quickly with Python 3.4"
@echo "test-all - run tests on every Python version with tox"
@echo "coverage - check code coverage quickly with Python 3.4"
@echo "dist - package"
@echo "clean Remove all build, test, coverage and Python artifacts"
@echo "clean-build Remove build artifacts"
@echo "clean-pyc Remove Python file artifacts"
@echo "clean-test Remove test and coverage artifacts"
@echo "lint Check style with Flake8 and Pylint"
@echo "test Run tests quickly with Python 3.5"
@echo "test-all Run tests on every Python version with tox"
@echo "coverage Check code coverage quickly with Python 3"
@echo "dist Package"

clean: clean-build clean-pyc clean-test

Expand Down Expand Up @@ -48,4 +48,3 @@ dist: clean
python setup.py sdist
python setup.py bdist_wheel
ls -l dist

0 comments on commit 51fee54

Please sign in to comment.