Skip to content

Commit

Permalink
Merge pull request #819 from TeoZosa/security/cve-2022-42969
Browse files Browse the repository at this point in the history
馃毃  Fix security scanning for `CVE-2022-42969`
  • Loading branch information
TeoZosa committed Nov 21, 2022
2 parents aa0bcc4 + 55bbeb7 commit 051a9a1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -90,7 +90,8 @@ commands = pre-commit run {posargs} -vv --all-files --color always
[testenv:security]
skip_install = true
deps = safety
commands = safety check --full-report -r {toxinidir}/requirements-all.txt
commands = safety check --full-report -r {toxinidir}/requirements-all.txt \
--ignore=51457 # CVE-2022-42969

[testenv:docs]
extras =
Expand Down
3 changes: 2 additions & 1 deletion {{cookiecutter.project_slug}}/tox.ini
Expand Up @@ -264,7 +264,8 @@ commands = poetry build
[testenv:security]
skip_install = true
deps = safety
commands = safety check --full-report -r {toxinidir}/requirements-all.txt
commands = safety check --full-report -r {toxinidir}/requirements-all.txt \
--ignore=51457 # CVE-2022-42969

[testenv:docs]
extras =
Expand Down

0 comments on commit 051a9a1

Please sign in to comment.