forked from MobSF/Mobile-Security-Framework-MobSF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
94 lines (87 loc) · 1.91 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[tox]
envlist = py37, py38, py39
skipsdist = True
[testenv]
deps =
-rrequirements.txt
[testenv:test]
skip_install = true
deps =
whitelist_externals =
git
bash
commands =
git submodule update --init --recursive
bash -c '. venv/bin/activate && python manage.py test mobsf'
[testenv:lint]
skip_install = true
deps =
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 =
flake8 {posargs}
codespell --ignore-words-list="doubleclick,dout,ne,upto" --skip="./mobsf/signatures/*,*.map,*.js,*.svg,./.tox/*,./venv/*,./.git/*"
[testenv:clean]
deps =
skip_install = true
whitelist_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 .tox
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/
mobsf/StaticAnalyzer/tools/enjarify/
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
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