Makefile 253 Bytes
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
3
4
5
6
install:
	pip install .
	rm -rf build csst_proto.egg-info

uninstall:
	pip uninstall csst_proto -y
BO ZHANG's avatar
BO ZHANG committed
7
8
9
10
11

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