Makefile 392 字节
Newer Older
P
peng.xu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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 -
clean:
	rm -rf cov_html
	cd all_in_one && docker-compose -f all_in_one.yml down && cd -
check_style:
	pycodestyle --config=.
make test:
	pytest --cov-report html:cov_html --cov=mishards