We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 343f17a + 6fedcf2 commit 49a3e5bCopy full SHA for 49a3e5b
.bandit.yml
@@ -0,0 +1,3 @@
1
+skips:
2
+- B101
3
+- B107
.travis.yml
@@ -2,6 +2,8 @@ language: python
sudo: false
matrix:
4
include:
5
+ - python: 3.8
6
+ env: TOXENV=security
7
- python: 2.7
8
env: TOXENV=py27
9
- python: pypy
tox.ini
@@ -16,6 +16,12 @@ commands =
16
--cov=w3lib --cov-report=term \
17
{posargs:w3lib tests}
18
19
+[testenv:security]
20
+deps =
21
+ bandit
22
+commands =
23
+ bandit -r -c .bandit.yml {posargs:w3lib}
24
+
25
[docs]
26
changedir = docs
27
deps = -rdocs/requirements.txt
0 commit comments