1 Star 0 Fork 0

NATS/nats.py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 836 Bytes
一键复制 编辑 原始数据 按行查看 历史
Casper Beyer 提交于 2024-10-01 17:30 . Enforce formatting
REPO_OWNER=nats-io
PROJECT_NAME=nats.py
SOURCE_CODE=nats
help:
@cat $(MAKEFILE_LIST) | \
grep -E '^[a-zA-Z_-]+:.*?##' | \
sed "s/local-//" | \
sort | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
clean:
find . -name "*.py[co]" -delete
deps:
pip install pipenv --upgrade
pipenv install --dev
format:
yapf -i --recursive $(SOURCE_CODE)
yapf -i --recursive tests
test:
yapf --recursive --diff $(SOURCE_CODE)
yapf --recursive --diff tests
mypy
flake8 ./nats/js/
pytest
ci: deps
# pipenv run yapf --recursive --diff $(SOURCE_CODE)
# pipenv run yapf --recursive --diff tests
# pipenv run mypy
pipenv run flake8 --ignore="W391, W503, W504" ./nats/js/
pipenv run pytest -x -vv -s --continue-on-collection-errors
watch:
while true; do pipenv run pytest -v -s -x; sleep 10; done
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/nats-io/nats.py.git
[email protected]:nats-io/nats.py.git
nats-io
nats.py
nats.py
main

搜索帮助