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 c2eb8d5 + b03d165 commit 332b7e8Copy full SHA for 332b7e8
.bandit.yml
@@ -0,0 +1,3 @@
1
+skips:
2
+- B320
3
+- B410
.travis.yml
@@ -6,6 +6,8 @@ branches:
6
- /^v\d\.\d+\.\d+(rc\d+|\.dev\d+)?$/
7
matrix:
8
include:
9
+ - python: 3.8
10
+ env: TOXENV=security
11
- python: 3.8
12
env: TOXENV=flake8
13
- python: 2.7
tox.ini
@@ -7,6 +7,13 @@ deps =
commands = py.test --cov=parsel --cov-report= {posargs:parsel tests}
+[testenv:security]
+basepython = python3.8
+deps =
+ bandit
14
+commands =
15
+ bandit -r -c .bandit.yml {posargs:parsel}
16
+
17
[testenv:flake8]
18
basepython = python3.8
19
deps =
0 commit comments