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.
1 parent eb40f21 commit 05c0e76Copy full SHA for 05c0e76
.bandit.yml
@@ -0,0 +1,2 @@
1
+skips:
2
+- B101
.travis.yml
@@ -1,10 +1,13 @@
language: python
-python:
3
-- '2.7'
4
-- '3.4'
5
-- '3.5'
6
-- '3.6'
7
-- '3.7'
+matrix:
+ include:
+ - env: TOXENV=security
+ python: 3.8
+ - python: 2.7
+ - python: 3.4
8
+ - python: 3.5
9
+ - python: 3.6
10
+ - python: 3.7
11
install:
12
- pip install -r tests/requirements.txt -e .
13
script:
tox.ini
@@ -7,3 +7,9 @@ deps=
commands =
py.test --cov-report term --cov=cssselect
+
+[testenv:security]
+deps =
+ bandit
14
+commands =
15
+ bandit -r -c .bandit.yml {posargs:cssselect}
0 commit comments