Skip to content

Commit

Permalink
Merge 1c6c326 into a5f7140
Browse files Browse the repository at this point in the history
  • Loading branch information
sahensley committed Jul 1, 2022
2 parents a5f7140 + 1c6c326 commit 97f8df8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Expand Up @@ -11,6 +11,10 @@ matrix:
env: TOX_ENV=cov-travis DEPLOY=1
- python: "3.5"
env: TOX_ENV=docs
- python: "3.5"
env: TOX_ENV=py3-bandit-exitzero
- python: "3.5"
env: TOX_ENV=py3-bandit
script: tox -e $TOX_ENV
after_success:
- test $TOX_ENV = docs && scripts/push-docs
Expand Down
8 changes: 8 additions & 0 deletions tox.ini
Expand Up @@ -45,6 +45,14 @@ use_develop=true
commands=
sphinx-build -M html docs docs/_build

[testenv:py3-bandit-exitzero]
deps = bandit
commands = bandit -r . -l --exclude './.tox' --exit-zero

[testenv:py3-bandit]
deps = bandit
commands = bandit -r . -ll --exclude './.tox'

[flake8]
max-line-length = 100

Expand Down

0 comments on commit 97f8df8

Please sign in to comment.