Merge pull request #1612 from c-goosen/bandit_security_static_analysis

Add bandit code static analyzer for security.
This commit is contained in:
7 2019-06-24 10:05:20 -07:00 committed by GitHub
commit 966b05b47e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 4 deletions

View File

@ -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

View File

@ -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__,
) )

View File

@ -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
View File

@ -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