Files
scikit-image/Makefile
T
2009-10-28 14:37:00 +01:00

15 lines
247 B
Makefile

.PHONY: all clean test
all:
python setup.py build_ext --inplace
clean:
find . -name "*.so" | xargs rm
test:
nosetests scikits/image
coverage:
nosetests scikits/image --with-coverage
coverage -r -m scikits/image/*.py scikits/image/*/*.py