Skip to content

Commit

Permalink
Ignore sqlalchemy vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
Reillyhewitson committed Dec 13, 2022
1 parent 4e275f6 commit da66fac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ def safety(session):
external=True,
)
# Ignore 50916 as the latest version of pydantic and
# Ignore 51457 as the latest version of pytest does not support
# Ignore 51457 as the latest version of pytest and
# Ignore 51668 as the latest version of SQLAchemy as they do not support
# python 3.6 which is still used in production
session.run(
"safety",
Expand All @@ -84,6 +85,8 @@ def safety(session):
"50916",
"--ignore",
"51457",
"--ignore",
"51668",
)

try:
Expand Down

0 comments on commit da66fac

Please sign in to comment.