mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 03:13:22 +08:00
20 lines
457 B
Makefile
20 lines
457 B
Makefile
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_deploy:
|
|
cd all_in_one && docker-compose -f all_in_one.yml down && cd -
|
|
clean_coverage:
|
|
rm -rf cov_html
|
|
clean: clean_coverage clean_deploy
|
|
style:
|
|
pycodestyle --config=.
|
|
coverage:
|
|
pytest --cov-report html:cov_html --cov=mishards
|
|
test:
|
|
pytest
|