1 Star 3 Fork 2

个人收藏室/Mobile-Security-Framework-MobSF

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tox.ini 2.17 KB
一键复制 编辑 原始数据 按行查看 历史
[tox]
envlist = py310, py311, p312
skipsdist = True
isolated_build = true
[testenv:test]
skip_install = true
deps =
allowlist_externals =
git
poetry
commands =
git submodule update --init --recursive
poetry install --no-root --only main --no-interaction --no-ansi
poetry run python manage.py test mobsf
[testenv:lint]
skip_install = true
deps =
autopep8
pydocstyle
flake8
flake8-broken-line
flake8-bugbear
flake8-builtins
flake8-colors
flake8-commas
flake8-comprehensions
flake8-docstrings
flake8-eradicate
flake8-import-order
flake8-logging-format
flake8-quotes
flake8-self
pep8-naming
radon
codespell
commands =
autopep8 . --recursive --in-place
flake8 {posargs}
codespell --ignore-words-list="doubleclick,dout,ne,upto,lief,afile" \
--skip="./mobsf/StaticAnalyzer/tools/*,./mobsf/signatures/*,./mobsf/StaticAnalyzer/views/android/rules/*,.*.map,*.js,*.svg,./build/*,./.tox/*,./venv/*,./.git/*,./poetry.lock"
[testenv:clean]
deps =
skip_install = true
allowlist_externals =
bash
find
rm
commands =
find . -name "*.py[co]" -delete
bash -c 'find . -name "__pycache__" -exec rm -fr \{\} \; -prune'
bash -c 'find . -depth -name "*.egg-info" -exec rm -fr \{\} \;'
rm -rf build dist
bash -c './scripts/clean.sh y'
# Reference for error codes:
# http://www.pydocstyle.org/en/latest/error_codes.html
[flake8]
enable-extensions = G
exclude =
.tox
.git
__pycache__
mobsf/uploads
mobsf/downloads
mobsf/static
mobsf/templates
venv
build
mobsf/DynamicAnalyzer/tools/adb/
mobsf/StaticAnalyzer/migrations/
ignore =
D100,
D101,
D102,
D103,
D104,
D105,
D107,
D401,
W503,
Q003,
# Allow only ' for strings
SF01,
# Allow private member access
I100,
# Use python sort imports
R701,
# TODO fix this later too complex
C901,
# TODO function too complex
N400,
# For ASCII art
W605,
# For ASCII art invalid escape sequence
# remove # flake8: noqa from manifest_analysis.py, should be fixed with R701
max-complexity = 42
radon_max_cc = 10
max-line-length = 88
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/software-reverse-engineering/Mobile-Security-Framework-MobSF.git
git@gitee.com:software-reverse-engineering/Mobile-Security-Framework-MobSF.git
software-reverse-engineering
Mobile-Security-Framework-MobSF
Mobile-Security-Framework-MobSF
master

搜索帮助