Makefile 457 字节
Newer Older
P
peng.xu 已提交
1 2 3 4 5 6 7 8
build:
	docker build --network=host -t milvusdb/mishards .
push:
	docker push milvusdb/mishards
pull:
	docker pull milvusdb/mishards
deploy:
	cd all_in_one && docker-compose -f all_in_one.yml up -d && cd -
P
peng.xu 已提交
9
clean_deploy:
P
peng.xu 已提交
10
	cd all_in_one && docker-compose -f all_in_one.yml down && cd -
P
peng.xu 已提交
11 12 13 14
clean_coverage:
	rm -rf cov_html
clean: clean_coverage clean_deploy
style:
P
peng.xu 已提交
15
	pycodestyle --config=.
P
peng.xu 已提交
16
coverage:
P
peng.xu 已提交
17
	pytest --cov-report html:cov_html --cov=mishards
P
peng.xu 已提交
18 19
test:
	pytest