Makefile 427 Bytes
Newer Older
BO ZHANG's avatar
tweaks  
BO ZHANG committed
1
2
export PKG=csst_common

BO ZHANG's avatar
BO ZHANG committed
3
4
all: test install clean

BO ZHANG's avatar
tweaks  
BO ZHANG committed
5
6
clean:
	rm -rf build dist $(PKG).egg-info
BO ZHANG's avatar
BO ZHANG committed
7
	rm -rf .coverage .coverage.* .pytest_cache htmlcov *.log
BO ZHANG's avatar
tweaks  
BO ZHANG committed
8
9
10
11
12
13
14
15
16

install: clean
	pip install .
	rm -rf build dist $(PKG).egg-info

uninstall:
	pip uninstall $(PKG) -y

test:
BO ZHANG's avatar
BO ZHANG committed
17
	coverage run -m  pytest . --cov=$(PKG) --import-mode=importlib --cov-report=term-missing
BO ZHANG's avatar
tweaks  
BO ZHANG committed
18
	coverage report -m
BO ZHANG's avatar
BO ZHANG committed
19
	rm -rf .coverage .coverage.* .pytest_cache htmlcov *.log