Merge pull request #1612 from c-goosen/bandit_security_static_analysis
Add bandit code static analyzer for security.
This commit is contained in:
commit
966b05b47e
@ -21,6 +21,10 @@ matrix:
|
|||||||
python: 3.6
|
python: 3.6
|
||||||
- env: TOX_ENV=check
|
- env: TOX_ENV=check
|
||||||
python: 3.6
|
python: 3.6
|
||||||
|
- env: TOX_ENV=security
|
||||||
|
python: 3.7
|
||||||
|
dist: xenial
|
||||||
|
sudo: true
|
||||||
install:
|
install:
|
||||||
- pip install -U tox
|
- pip install -U tox
|
||||||
- pip install codecov
|
- pip install codecov
|
||||||
|
@ -80,7 +80,7 @@ class Config(dict):
|
|||||||
module.__file__ = filename
|
module.__file__ = filename
|
||||||
try:
|
try:
|
||||||
with open(filename) as config_file:
|
with open(filename) as config_file:
|
||||||
exec(
|
exec( # nosec
|
||||||
compile(config_file.read(), filename, "exec"),
|
compile(config_file.read(), filename, "exec"),
|
||||||
module.__dict__,
|
module.__dict__,
|
||||||
)
|
)
|
||||||
|
2
setup.py
2
setup.py
@ -112,7 +112,7 @@ if strtobool(os.environ.get("SANIC_NO_UVLOOP", "no")):
|
|||||||
|
|
||||||
extras_require = {
|
extras_require = {
|
||||||
"test": tests_require,
|
"test": tests_require,
|
||||||
"dev": tests_require + ["aiofiles", "tox", "black", "flake8"],
|
"dev": tests_require + ["aiofiles", "tox", "black", "flake8", "bandit"],
|
||||||
"docs": [
|
"docs": [
|
||||||
"sphinx",
|
"sphinx",
|
||||||
"sphinx_rtd_theme",
|
"sphinx_rtd_theme",
|
||||||
|
12
tox.ini
12
tox.ini
@ -1,5 +1,5 @@
|
|||||||
[tox]
|
[tox]
|
||||||
envlist = py36, py37, {py36,py37}-no-ext, lint, check
|
envlist = py36, py37, {py36,py37}-no-ext, lint, check, security
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
usedevelop = True
|
usedevelop = True
|
||||||
@ -31,10 +31,11 @@ deps =
|
|||||||
flake8
|
flake8
|
||||||
black
|
black
|
||||||
isort
|
isort
|
||||||
|
bandit
|
||||||
|
|
||||||
commands =
|
commands =
|
||||||
flake8 sanic
|
flake8 sanic
|
||||||
black --config ./.black.toml --check --verbose sanic
|
black --config ./.black.toml --check --verbose sanic/
|
||||||
isort --check-only --recursive sanic
|
isort --check-only --recursive sanic
|
||||||
|
|
||||||
[testenv:check]
|
[testenv:check]
|
||||||
@ -47,3 +48,10 @@ commands =
|
|||||||
[pytest]
|
[pytest]
|
||||||
filterwarnings =
|
filterwarnings =
|
||||||
ignore:.*async with lock.* instead:DeprecationWarning
|
ignore:.*async with lock.* instead:DeprecationWarning
|
||||||
|
|
||||||
|
[testenv:security]
|
||||||
|
deps =
|
||||||
|
bandit
|
||||||
|
|
||||||
|
commands =
|
||||||
|
bandit --recursive sanic --skip B404,B101 --exclude sanic/reloader_helpers.py
|
Loading…
x
Reference in New Issue
Block a user