-
Notifications
You must be signed in to change notification settings - Fork 191
/
tox.ini
167 lines (160 loc) · 2.54 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
[flake8]
ignore =
# H301: one import per line
H301
# H306: Alphabetically order your imports by the full module path
H306
# W503: line break before binary operator
W503
per-file-ignores=
sf_linux_os_syslog.py:E501
sf_config_snapshot.py:E501
deployment_samples_stack.py:E501
step4-create-cfn-template.py:E501
test_sf_guardduty.py:E501
test_sf_securityhub.py:E501
source/lambda/add_pandas_layer/lambda_function.py: E501
exclude=
# defaults
.svn
CVS
.bzr
.hg
.git
__pycache__
.tox
.eggs
*.egg
# develop dirs
.env
.lambda38
.lambda39
python3.8
python3.9
backup
cdk.out
lib/python3*
x/siem-on*
# files
sf_deepsecurity.py
sf_okta.py
typing_extensions.py
xmltodict.py
# 3rd party dirs
_pytest
aioboto3
aiobotocore
aiohttp
aioitertools
async_timeout
asynctest
attr
attrs
aws_lambda_powertools
aws_xray_sdk
bin
boto3
botocore
certifi
chardet
charset_normalizer
crhelper
fastjsonschema
frozenlist
geoip2
idna
libfuturize
libpasteurize
maxminddb
multidict
opensearchpy
past
requests
ua_parser
urllib3
wrapt
yarl
filename = *.py
[isort]
known_first_party =
index
mysiem
siem
aoss
[pytest]
pythonpath = "source/lambda/es_loader"
#testpaths =
# tests
filterwarnings =
ignore:The \(fspath:
ignore:<class 'pytest_flake8.Flake8Item'>
ignore:Flake8Item
norecursedirs =
.git
.pytest_cache
_distutils_hack
__pycache__
.env
# top dir
backup
deployment
siem-on-amazon-opensearch-service
tests_internal
# temp dir
cdk.out
x/siem
.lambda38
.lambda39
# 3rd party module
_pytest
aioboto3
aiobotocore
aiohttp
aioitertools
async_timeout
asynctest
attr
attrs
aws_lambda_powertools
aws_xray_sdk
bin
boto3
botocore
certifi
chardet
charset_normalizer
crhelper
fastjsonschema
frozenlist
geoip2
idna
libfuturize
libpasteurize
maxminddb
multidict
opensearchpy
past
pkg_resources
requests
s3transfer
setuptools
typing_extensions.py
ua_parser
urllib3
wrapt
yarl
[coverage:run]
omit =
.git
.pytest_cache
.env
__pycache__
.lambda38
.lambda39
tests*
# 3rd party module
*/aws_lambda_powertools/*
*/chardet/*
*/opensearchpy/*
*/geoip2/*
*/maxminddb/*