mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Clean up Makefile [ci skip]
- Rename test-dep -> install-req to better describe what target does; keep target name short.
This commit is contained in:
parent
19432c3e53
commit
0706f6b504
10
Makefile
10
Makefile
|
@ -1,4 +1,4 @@
|
|||
.PHONY: pre clean install test inplace coverage test-dep help docs livedocs
|
||||
.PHONY: pre clean install install-req test inplace coverage help docs livedocs
|
||||
|
||||
help:
|
||||
@echo "Please use \`make <target>' where <target> is one of"
|
||||
|
@ -10,7 +10,7 @@ help:
|
|||
@echo " coverage run coverage test (in progress)"
|
||||
@echo " docs make html docs"
|
||||
@echo " docserver run an http server on the docs directory"
|
||||
@echo " test-dep install coveraget and test dependencies"
|
||||
@echo " install-req install documentation and test dependencies"
|
||||
|
||||
pre:
|
||||
virtualenv .
|
||||
|
@ -34,6 +34,9 @@ install:
|
|||
python setup.py install
|
||||
python selftest.py --installed
|
||||
|
||||
install-req:
|
||||
pip install -r requirements.txt
|
||||
|
||||
test:
|
||||
python test-installed.py
|
||||
|
||||
|
@ -51,9 +54,6 @@ coverage:
|
|||
coverage combine
|
||||
coverage report
|
||||
|
||||
test-dep:
|
||||
pip install -r requirements.txt
|
||||
|
||||
docs:
|
||||
$(MAKE) -C docs html
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user