forked from airbnb/streamalert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
33 lines (28 loc) · 941 Bytes
/
setup.cfg
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
[nosetests]
cover-erase=1
verbosity=2
nocapture=1
[pycodestyle]
max-line-length=100
[bandit]
# Skip the venv/ and tests/ directories when scanning.
exclude: venv,./tests
# Skip the following tests:
#
# - [B108:hardcoded_tmp_directory] Probable insecure usage of temp file/directory.
# Severity: Medium Confidence: Medium
# In Lambda, /tmp is explicitly where local files must be stored
#
# - [B311:blacklist] Standard pseudo-random generators are not suitable for security/cryptographic purposes.
# Severity: Low Confidence: High
# StreamAlert doesn't need cryptographic random number generators
#
# - [B404:blacklist] Consider possible security implications associated with subprocess module.
# Severity: Low Confidence: High
# There are other warnings specific to subprocess calls (e.g. B603, B607)
skips: B108,B311,B404
[yapf]
COLUMN_LIMIT=100
[coverage:report]
omit=streamalert_cli/*
show_missing=True