17 Star 0 Fork 0

openKylin/xdiagnose

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 781 Bytes
一键复制 编辑 原始数据 按行查看 历史
openKylinBot 提交于 2022-05-14 04:05 . Import Upstream version 3.8.9
APPNAME=xdiagnose
APPURL=http://launchpad.net/xdiagnose
# Run all the tests
check:
./run-tests
clean:
rm -rf doc/api
find . -name '*.pyc' -print0 | xargs -0 rm -f
find . -name '*~' -print0 | xargs -0 rm -f
# Check for common & easily catchable Python mistakes.
pyflakes:
pyflakes $(APPNAME)
# Check for coding standard violations.
pep8:
find . -name '*.py' -print0 | xargs -0 pep8 --ignore E221,E222
find . -name '*.py' -print0 | xargs -0 pep8 --ignore E221,E222 --repeat | wc -l
apidocs:
pydoctor --add-package $(APPNAME) \
--make-html --html-output=doc/api \
--project-name=$(APPNAME) \
--project-url=$(APPURL)
lint: pyflakes pep8
.PHONY: check lint pyflakes pep8 apidocs clean
# Ignore pyflakes exit code so pep8 will run for 'make lint'
.IGNORE: pyflakes
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openkylin/xdiagnose.git
git@gitee.com:openkylin/xdiagnose.git
openkylin
xdiagnose
xdiagnose
openkylin/nile

搜索帮助