mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-20 21:13:23 +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:
|
help:
|
||||||
@echo "Please use \`make <target>' where <target> is one of"
|
@echo "Please use \`make <target>' where <target> is one of"
|
||||||
|
@ -10,7 +10,7 @@ help:
|
||||||
@echo " coverage run coverage test (in progress)"
|
@echo " coverage run coverage test (in progress)"
|
||||||
@echo " docs make html docs"
|
@echo " docs make html docs"
|
||||||
@echo " docserver run an http server on the docs directory"
|
@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:
|
pre:
|
||||||
virtualenv .
|
virtualenv .
|
||||||
|
@ -34,6 +34,9 @@ install:
|
||||||
python setup.py install
|
python setup.py install
|
||||||
python selftest.py --installed
|
python selftest.py --installed
|
||||||
|
|
||||||
|
install-req:
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
test:
|
test:
|
||||||
python test-installed.py
|
python test-installed.py
|
||||||
|
|
||||||
|
@ -51,9 +54,6 @@ coverage:
|
||||||
coverage combine
|
coverage combine
|
||||||
coverage report
|
coverage report
|
||||||
|
|
||||||
test-dep:
|
|
||||||
pip install -r requirements.txt
|
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
$(MAKE) -C docs html
|
$(MAKE) -C docs html
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user