File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# Makefile for django_coverage_plugin
5
5
6
- default :
7
- @echo " * No default action *"
6
+ help : # # Show this help.
7
+ @echo " Available targets:"
8
+ @grep ' ^[a-zA-Z]' $(MAKEFILE_LIST ) | sort | awk -F ' :.*?## ' ' NF==2 {printf " %-26s%s\n", $$1, $$2}'
8
9
9
- test :
10
- tox
10
+ test : # # Run all the tests.
11
+ tox -q -- -q
11
12
12
- clean :
13
+ clean : # # Remove non-source files.
13
14
-rm -rf * .egg-info
14
15
-rm -rf build dist
15
16
-rm -f * .pyc * /* .pyc * /* /* .pyc * /* /* /* .pyc * /* /* /* /* .pyc * /* /* /* /* /* .pyc
20
21
-rm -f .coverage .coverage.* coverage.xml
21
22
-rm -f setuptools-* .egg distribute-* .egg distribute-* .tar.gz
22
23
23
- sterile : clean
24
+ sterile : clean # # Remove all non-controlled content, even if expensive.
24
25
-rm -rf .tox*
25
26
26
27
SDIST_CMD = python setup.py sdist --formats=gztar
You can’t perform that action at this time.
0 commit comments