Makefile 333 Bytes
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
3
4
5
clean:
	rm -rf build csst_proto.egg-info
	rm -rf .coverage .pytest_cache

install: clean
BO ZHANG's avatar
BO ZHANG committed
6
7
8
9
10
	pip install .
	rm -rf build csst_proto.egg-info

uninstall:
	pip uninstall csst_proto -y
BO ZHANG's avatar
BO ZHANG committed
11
12
13
14
15

test:
	coverage run -m  pytest . --import-mode=importlib --cov-report=html --cov-report=term-missing
	coverage report -m
	rm -rf .coverage .pytest_cache