File: Makefile

package info (click to toggle)
joblib 1.5.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,284 kB
  • sloc: python: 15,669; sh: 124; makefile: 39
file content (20 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.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