Add security checks for python
This commit is contained in:
parent
cffee02043
commit
44b3617df4
2 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
bandit==1.2.0
|
||||||
coverage==4.2
|
coverage==4.2
|
||||||
dj_database_url==0.4.1
|
dj_database_url==0.4.1
|
||||||
Django>=1.10,<1.11
|
Django>=1.10,<1.11
|
||||||
|
@ -5,6 +6,7 @@ flake8==3.2.1
|
||||||
honcho==0.7.1
|
honcho==0.7.1
|
||||||
psycopg2==2.6.2
|
psycopg2==2.6.2
|
||||||
pygments-style-github==0.4
|
pygments-style-github==0.4
|
||||||
|
safety==0.5.1
|
||||||
wagtail>=1.7,<1.8
|
wagtail>=1.7,<1.8
|
||||||
waitress==1.0.1
|
waitress==1.0.1
|
||||||
whitenoise==3.2.2
|
whitenoise==3.2.2
|
||||||
|
|
|
@ -12,3 +12,6 @@ coverage run --source=project --omit='*/wsgi.py,*/settings.py,*/migrations/*.py,
|
||||||
coverage report
|
coverage report
|
||||||
|
|
||||||
npm test
|
npm test
|
||||||
|
|
||||||
|
bandit -r project/ manage.py
|
||||||
|
safety check
|
||||||
|
|
Reference in a new issue