代码拉取完成,页面将自动刷新
[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
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。