File size: 363 Bytes
dee9fba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | .PHONY: all test test-no-multiprocessing test-doc doc doc-clean
all: test
test:
pytest joblib --timeout 30 -vl
test-no-multiprocessing:
export JOBLIB_MULTIPROCESSING=0 && pytest joblib
test-doc:
pytest $(shell find doc -name '*.rst' | sort)
# generate html documentation using sphinx
doc:
make -C doc
# clean documentation
doc-clean:
make -C doc clean
|