Skip to content

Commit

Permalink
Add make clean target
Browse files Browse the repository at this point in the history
  • Loading branch information
lundberg committed Sep 19, 2018
1 parent c342ebf commit af707f5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
.PHONY: test
test:
python setup.py test

.PHONY: flake8
flake8:
flake8 --ignore=E501,F403 --max-complexity 12 django_enumfield

.PHONY: install
install:
python setup.py install

.PHONY: develop
develop:
python setup.py develop

.PHONY: coverage
coverage:
coverage run --include=django_enumfield/* setup.py test

.PHONY: clean
clean:
rm -rf .tox/ dist/ *.egg *.egg-info .coverage* .eggs

0 comments on commit af707f5

Please sign in to comment.