mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-01 09:45:04 +08:00
17 lines
312 B
Makefile
17 lines
312 B
Makefile
.PHONY: all clean test
|
|
|
|
all:
|
|
python setup.py build_ext --inplace
|
|
|
|
clean:
|
|
find . -name "*.so" -o -name "*.pyc" -o -name "*.pyx.md5" | xargs rm -f
|
|
|
|
test:
|
|
nosetests skimage
|
|
|
|
coverage:
|
|
nosetests skimage --with-coverage --cover-package=skimage
|
|
|
|
run-all-examples:
|
|
for f in doc/examples/*.py; do python "$f"; done
|